diff options
Diffstat (limited to 'net-misc/vmpsd/files')
-rw-r--r-- | net-misc/vmpsd/files/vmpsd-1.4-Wreturn-type.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-misc/vmpsd/files/vmpsd-1.4-Wreturn-type.patch b/net-misc/vmpsd/files/vmpsd-1.4-Wreturn-type.patch new file mode 100644 index 000000000000..e6354c902c12 --- /dev/null +++ b/net-misc/vmpsd/files/vmpsd-1.4-Wreturn-type.patch @@ -0,0 +1,11 @@ +--- a/data.c ++++ b/data.c +@@ -35,7 +35,7 @@ + exit(1); + } + +-void *xfree(void *p) { ++void xfree(void *p) { + + if (p == NULL) return; + vmps_log(DEBUG|SYSTEM, "FREE: %x",p); |