cast NULL sentinel to void *

This commit is contained in:
couderc 2004-01-16 12:17:47 +00:00
parent 72f6223a93
commit cb887d1fca

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-ROX-Filer_src_pixmaps_c,v 1.3 2004/01/16 12:17:47 couderc Exp $
--- ROX-Filer/src/pixmaps.c.orig 2004-01-16 13:07:58.000000000 +0100
+++ ROX-Filer/src/pixmaps.c 2004-01-16 13:08:04.000000000 +0100
@@ -374,7 +374,7 @@ void pixmap_background_thumb(const gchar
{
execl(thumb_prog, thumb_prog, path,
thumbnail_path(path),
- g_strdup_printf("%d", PIXMAP_THUMB_SIZE), NULL);
+ g_strdup_printf("%d", PIXMAP_THUMB_SIZE), (void *)NULL);
_exit(1);
}