summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--queue.c2
-rw-r--r--queue.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/queue.c b/queue.c
index e6665d4f..60c41c19 100644
--- a/queue.c
+++ b/queue.c
@@ -2056,7 +2056,7 @@ DEFpropSetMeth(queue, iMinMsgsPerWrkr, int);
DEFpropSetMeth(queue, bSaveOnShutdown, int);
DEFpropSetMeth(queue, pUsr, void*);
DEFpropSetMeth(queue, iDeqSlowdown, int);
-DEFpropSetMeth(queue, sizeOnDiskMax, long);
+DEFpropSetMeth(queue, sizeOnDiskMax, int64);
/* This function can be used as a generic way to set properties. Only the subset
diff --git a/queue.h b/queue.h
index 4bd02b45..959c3b17 100644
--- a/queue.h
+++ b/queue.h
@@ -181,7 +181,7 @@ PROTOTYPEpropSetMeth(queue, iMinMsgsPerWrkr, int);
PROTOTYPEpropSetMeth(queue, bSaveOnShutdown, int);
PROTOTYPEpropSetMeth(queue, pUsr, void*);
PROTOTYPEpropSetMeth(queue, iDeqSlowdown, int);
-PROTOTYPEpropSetMeth(queue, sizeOnDiskMax, long);
+PROTOTYPEpropSetMeth(queue, sizeOnDiskMax, int64);
#define queueGetID(pThis) ((unsigned long) pThis)
#endif /* #ifndef QUEUE_H_INCLUDED */