diff options
| author | Michael Scherer <misc@mandriva.org> | 2009-03-07 13:13:04 +0100 |
|---|---|---|
| committer | Stephane Marchesin <marchesin@icps.u-strasbg.fr> | 2009-03-07 13:13:04 +0100 |
| commit | 041e6e460d0df14f206ecea14cb77925ea029891 (patch) | |
| tree | cef305158ac9316b827c4184923b980782c7b43a | |
| parent | 1f0cc20f6f558ddc059e354453c51fea32f3ee92 (diff) | |
Fix format string error
| -rw-r--r-- | xkbevd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -411,7 +411,7 @@ int ok; return True; case EchoAction: if (cfg->action.text!=NULL) { - sprintf(buf,cfg->action.text); + sprintf(buf,"%s",cfg->action.text); cmd= SubstituteEventArgs(buf,ev); printf("%s",cmd); } |
