Index: trunk/archive/scripts/src/papStuff.c
===================================================================
--- trunk/archive/scripts/src/papStuff.c	(revision 4092)
+++ trunk/archive/scripts/src/papStuff.c	(revision 4309)
@@ -2,4 +2,5 @@
 #include <string.h>
 #include "pslib.h"
+#include "papStuff.h"
 
 // Split string on given characters
@@ -23,5 +24,5 @@
 	    } else {
 		// We're at the end of the word
-		char *word = psStringNCopy(&string[start], i - start);
+		psString word = psStringNCopy(&string[start], i - start);
 		(void)psListAdd(values, PS_LIST_TAIL, word);
 		start = i + 1;
@@ -31,5 +32,5 @@
     if (start < length) {
 	// Copy the last word
-	char *word = psStringNCopy(&string[start], length - start);
+	psString word = psStringNCopy(&string[start], length - start);
 	(void)psListAdd(values, PS_LIST_TAIL, word);
     }
