552c56b2c9dcdb08ecc5e974b2d3efb8b8b401b9 kent Sun Feb 1 18:26:07 2015 -0800 Removing stray blank line. diff --git src/lib/common.c src/lib/common.c index d231e0b..3a332fd 100644 --- src/lib/common.c +++ src/lib/common.c @@ -2431,31 +2431,30 @@ return p; } int cntStringsInList(char *pStrings) /* returns count of strings in a list of strings dilimited by 1 null and terminated by 2 nulls. */ { int cnt=0; char *p = pStrings; while (nextStringInList(&p) != NULL) cnt++; return cnt; } int stringArrayIx(char *string, char *array[], int arraySize) - /* Return index of string in array or -1 if not there. */ { int i; for (i=0; i<arraySize; ++i) if (!differentWord(array[i], string)) return i; return -1; } int ptArrayIx(void *pt, void *array, int arraySize) /* Return index of pt in array or -1 if not there. */ { int i; void **a = array; for (i=0; i<arraySize; ++i)