[svn:parrot] r38707 - trunk/config/gen/platform/generic

petdance at svn.parrot.org petdance at svn.parrot.org
Tue May 12 06:30:56 UTC 2009


Author: petdance
Date: Tue May 12 06:30:55 2009
New Revision: 38707
URL: https://trac.parrot.org/parrot/changeset/38707

Log:
return NULL, not 0, as a pointer.

Modified:
   trunk/config/gen/platform/generic/itimer.c

Modified: trunk/config/gen/platform/generic/itimer.c
==============================================================================
--- trunk/config/gen/platform/generic/itimer.c	Tue May 12 06:18:44 2009	(r38706)
+++ trunk/config/gen/platform/generic/itimer.c	Tue May 12 06:30:55 2009	(r38707)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2004-2006, Parrot Foundation.
+ * Copyright (C) 2004-2009, Parrot Foundation.
  */
 
 /*
@@ -98,7 +98,7 @@
 void *
 new_sys_timer_ms(void)
 {
-    return 0;
+    return NULL;
 }
 
 #else


More information about the parrot-commits mailing list