commit 10d2130a2a82fed36d9d16ea4dc222f2fbbdb3c8
Author: Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue Mar 6 18:35:56 2018 +0200
Commit: Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Mar 13 19:33:47 2018 +0200
textscreen: Make TranslateKeysym parameter const
---
textscreen/txt_sdl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/textscreen/txt_sdl.c b/textscreen/txt_sdl.c
index d1764e8a..de304c33 100644
--- a/textscreen/txt_sdl.c
+++ b/textscreen/txt_sdl.c
@@ -518,7 +518,7 @@ static int TranslateScancode(SDL_Scancode scancode)
}
}
-static int TranslateKeysym(SDL_Keysym *sym)
+static int TranslateKeysym(const SDL_Keysym *sym)
{
int translated;