Module Name:    src
Committed By:   jakllsch
Date:           Thu Nov 24 16:16:49 UTC 2011

Modified Files:
        src/sys/sys: malloc.h

Log Message:
An extra paren in previous made compiler sad.


To generate a diff of this commit:
cvs rdiff -u -r1.109 -r1.110 src/sys/sys/malloc.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/malloc.h
diff -u src/sys/sys/malloc.h:1.109 src/sys/sys/malloc.h:1.110
--- src/sys/sys/malloc.h:1.109	Mon Nov 21 04:36:05 2011
+++ src/sys/sys/malloc.h	Thu Nov 24 16:16:49 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: malloc.h,v 1.109 2011/11/21 04:36:05 christos Exp $	*/
+/*	$NetBSD: malloc.h,v 1.110 2011/11/24 16:16:49 jakllsch Exp $	*/
 
 /*
  * Copyright (c) 1987, 1993
@@ -109,7 +109,7 @@ int	debug_free(void *, struct malloc_typ
 
 void	debug_malloc_print(void);
 void	debug_malloc_printit(void (*)(const char *, ...)
-    __printflike(1, 2), vaddr_t));
+    __printflike(1, 2), vaddr_t);
 #endif /* MALLOC_DEBUG */
 
 void	*kern_realloc(void *, unsigned long, struct malloc_type *, int);

Reply via email to