mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-15 06:55:09 +02:00
13 lines
335 B
Diff
13 lines
335 B
Diff
Description: remove compiler warnings that nowadays result in errors
|
|
Author: Thorsten Alteholz <debian@alteholz.de>
|
|
--- a/uuconv.c
|
|
+++ b/uuconv.c
|
|
@@ -676,7 +676,7 @@ uvwrite_chat_script (e, pzarg)
|
|
{
|
|
if ((*pz)[0] != '-' && pz != pzarg)
|
|
fprintf (e, " ");
|
|
- fprintf (e, *pz);
|
|
+ fprintf (e, "%s", *pz);
|
|
}
|
|
}
|
|
|