Index: trunk/Ohana/src/opihi/pcontrol/JobID.c
===================================================================
--- trunk/Ohana/src/opihi/pcontrol/JobID.c	(revision 3187)
+++ trunk/Ohana/src/opihi/pcontrol/JobID.c	(revision 3203)
@@ -1,5 +1,3 @@
 # include "pcontrol.h"
-
-typedef unsigned long long IDtype;
 
 static IDtype CurrentJobID  = 0;
@@ -7,5 +5,5 @@
 
 /* for now, no persistence : we could use the date/time to seed the upper byte(s) if needed */
-InitIDs () {
+void InitIDs () {
   CurrentJobID = 0;
   CurrentHostID = 0;
@@ -32,4 +30,6 @@
 void PrintID (FILE *f, IDtype ID) {
 
+  unsigned short int word0, word1, word2, word3;
+
   word0 = 0xffff & ID;
   word1 = 0xffff & (ID >> 16);
