pkgsrc/devel/py-generate/patches/patch-aa
darcy 4f605e3dbd Cast size_t function and variable in printf and use "%lu" to prevent
compiler warnings when size_t is not unsigned int.
2005-01-12 10:55:36 +00:00

22 lines
609 B
Text

$NetBSD: patch-aa,v 1.2 2005/01/12 10:55:36 darcy Exp $
--- generate.c.orig 2005-01-04 08:15:47.000000000 -0500
+++ generate.c
@@ -364,7 +364,7 @@ replace_macro(const char *src, char *dst
char lenbuf[2048];
replace_macro(buf + 2, lenbuf, pre_param);
- sprintf(dst, "%d", strlen(lenbuf));
+ sprintf(dst, "%lu", (unsigned long) strlen(lenbuf));
continue;
}
@@ -828,7 +828,7 @@ get_input(FILE * in_fp, int if_flag)
continue;
p = pp;
- sprintf(cur_line_str, "%d", xline);
+ sprintf(cur_line_str, "%lu", (unsigned long) xline);
while (isspace((int) *p))
p++;