From eea760df19e4e07188b2548020a318a449c0a676 Mon Sep 17 00:00:00 2001 From: miker Date: Mon, 28 May 2007 20:16:09 +0000 Subject: [PATCH] swapped the formats -- typo git-svn-id: svn://svn.open-ils.org/ILS/trunk@7372 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- OpenSRF/src/utils/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSRF/src/utils/log.c b/OpenSRF/src/utils/log.c index cac10b0f29..3adb8b1338 100644 --- a/OpenSRF/src/utils/log.c +++ b/OpenSRF/src/utils/log.c @@ -61,7 +61,7 @@ void osrfLogSetIsClient(int is) { /* go ahead and create the xid prefix so it will be consistent later */ static char buff[32]; memset(buff, 0x0, 32); - snprintf(buff, 32, "%ld%d", (int)time(NULL), (long) getpid()); + snprintf(buff, 32, "%d%ld", (int)time(NULL), (long) getpid()); __osrfLogXidPfx = buff; } -- 2.11.0