project_files/frontlib/iniparser/dictionary.c
changeset 10017 de822cd3df3a
parent 7175 038e3415100a
--- a/project_files/frontlib/iniparser/dictionary.c	Tue Jan 21 22:38:13 2014 +0100
+++ b/project_files/frontlib/iniparser/dictionary.c	Tue Jan 21 22:43:06 2014 +0100
@@ -38,7 +38,7 @@
 static void * mem_double(void * ptr, int size)
 {
     void * newptr ;
- 
+
     newptr = calloc(2*size, 1);
     if (newptr==NULL) {
         return NULL ;
@@ -224,7 +224,7 @@
     unsigned    hash ;
 
     if (d==NULL || key==NULL) return -1 ;
-    
+
     /* Compute hash for this key */
     hash = dictionary_hash(key) ;
     /* Find if value is already in dictionary */
@@ -367,7 +367,7 @@
     /* Allocate dictionary */
     printf("allocating...\n");
     d = dictionary_new(0);
-    
+
     /* Set values in dictionary */
     printf("setting %d values...\n", NVALS);
     for (i=0 ; i<NVALS ; i++) {