Commit 76db2202 authored by dscho's avatar dscho

SDLvncviewer: fix passing a wrong pointer type

Signed-off-by: 's avatarJohannes Schindelin <johannes.schindelin@gmx.de>
parent ebe79c28
...@@ -408,7 +408,7 @@ static void handleSDLEvent(rfbClient *cl, SDL_Event *e) ...@@ -408,7 +408,7 @@ static void handleSDLEvent(rfbClient *cl, SDL_Event *e)
} }
break; break;
case SDL_SYSWMEVENT: case SDL_SYSWMEVENT:
clipboard_filter(&e); clipboard_filter(e);
break; break;
case SDL_VIDEORESIZE: case SDL_VIDEORESIZE:
setRealDimension(cl, e->resize.w, e->resize.h); setRealDimension(cl, e->resize.w, e->resize.h);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment