Pacify a paranoid compiler warning
* libmailutils/string/wordsplit.c (mu_wordsplit_perror): Use %s format specifier
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -2346,7 +2346,7 @@ mu_wordsplit_perror (struct mu_wordsplit *wsp) | ... | @@ -2346,7 +2346,7 @@ mu_wordsplit_perror (struct mu_wordsplit *wsp) |
2346 | break; | 2346 | break; |
2347 | 2347 | ||
2348 | default: | 2348 | default: |
2349 | wsp->ws_error (mu_wordsplit_strerror (wsp)); | 2349 | wsp->ws_error ("%s", mu_wordsplit_strerror (wsp)); |
2350 | } | 2350 | } |
2351 | } | 2351 | } |
2352 | 2352 | ... | ... |
-
Please register or sign in to post a comment