projects
/
yaz-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
259d7eb
)
Fix type of thread id
author
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 20 Feb 2007 09:39:17 +0000
(09:39 +0000)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 20 Feb 2007 09:39:17 +0000
(09:39 +0000)
src/log.c
patch
|
blob
|
history
diff --git
a/src/log.c
b/src/log.c
index
4ff5e18
..
ed2e05e
100644
(file)
--- a/
src/log.c
+++ b/
src/log.c
@@
-2,7
+2,7
@@
* Copyright (C) 1995-2007, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: log.c,v 1.46 2007-02-05 17:51:48 adam Exp $
+ * $Id: log.c,v 1.47 2007-02-20 09:39:17 adam Exp $
*/
/**
@@
-388,7
+388,7
@@
static void yaz_strftime(char *dst, size_t sz,
#ifdef WIN32
DWORD tid = GetCurrentThreadId();
#else
- long tid = 0;
+ pthread_t tid = 0;
#if YAZ_POSIX_THREADS
tid = pthread_self();
#endif