Index: trunk/ppTranslate/src/ppMops.h
===================================================================
--- trunk/ppTranslate/src/ppMops.h	(revision 34823)
+++ trunk/ppTranslate/src/ppMops.h	(revision 34824)
@@ -62,5 +62,5 @@
 } ppMopsDetections;
 
-ppMopsDetections *ppMopsDetectionsAlloc();
+ppMopsDetections *ppMopsDetectionsAlloc(void);
 
 /// Copy a detection
Index: trunk/ppTranslate/src/ppMopsDetections.c
===================================================================
--- trunk/ppTranslate/src/ppMopsDetections.c	(revision 34823)
+++ trunk/ppTranslate/src/ppMopsDetections.c	(revision 34824)
@@ -23,5 +23,5 @@
 }
 
-ppMopsDetections *ppMopsDetectionsAlloc()
+ppMopsDetections *ppMopsDetectionsAlloc(void)
 {
     ppMopsDetections *det = psAlloc(sizeof(ppMopsDetections)); // Detections, to return
Index: trunk/ppTranslate/src/ppMopsRead.c
===================================================================
--- trunk/ppTranslate/src/ppMopsRead.c	(revision 34823)
+++ trunk/ppTranslate/src/ppMopsRead.c	(revision 34824)
@@ -83,5 +83,5 @@
       continue;
     }
-    ppMopsDetections *det = ppMopsDetectionsAlloc(size);
+    ppMopsDetections *det = ppMopsDetectionsAlloc();
     det->platescale = NAN;
     detections->data[i] = det;
