From b87d6629d0eeb6b48ed2e1be25d15fb06b78fc22 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Wed, 27 Feb 2008 17:27:26 +0000 Subject: - bugfix: queue aborted when it was shut down, DA-enabled, DA mode was just initiated but not fully initialized (a race condition) - bugfix: queue properties sizeOnDisk, bytesRead were persisted to disk with wrong data type (long instead of int64) - could cause problems on 32 bit machines - fixed a problem introduced today, on-disk queue size was now wrongly calculated (but not in any released version) --- srUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'srUtils.h') diff --git a/srUtils.h b/srUtils.h index 6540b15a..1fe56665 100755 --- a/srUtils.h +++ b/srUtils.h @@ -59,7 +59,7 @@ extern syslogName_t syslogFacNames[]; * * \param iToConv The integer to be converted. */ -rsRetVal srUtilItoA(char *pBuf, int iLenBuf, long iToConv); +rsRetVal srUtilItoA(char *pBuf, int iLenBuf, number_t iToConv); /** * A method to duplicate a string for which the length is known. -- cgit