[Date Prev][Date Next] [Chronological] [Thread] [Top]

Bugfix: Superfluous ';' after at_index_print() (ITS#1667)



Full_Name: Hallvard B. Furuseth
Version: 2.1.0alpha
OS: Solaris
URL: 
Submission from: (NULL) (158.36.148.34)


ANSI C does not permit ';' after function definitions.  Fix:

--- servers/slapd/attr.c~	Wed Jan 16 04:40:41 2002
+++ servers/slapd/attr.c	Tue Mar 19 22:09:47 2002
@@ -24,5 +24,5 @@
 
 #ifdef LDAP_DEBUG
-static void at_index_print( void ) {};
+static void at_index_print( void ) {}
 #endif