summaryrefslogtreecommitdiffstats
path: root/ctdb/common/ctdb_util.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2007-05-23 20:15:09 +1000
committerAndrew Tridgell <tridge@samba.org>2007-05-23 20:15:09 +1000
commit5dc81da87e6a5947e9af6cf5856fdc400f5d44d2 (patch)
treeb61b4faaeedc2d062e719a0896d763d906969780 /ctdb/common/ctdb_util.c
parent296e15c9d49d3b5a14b9d04d5d8d6ab663f231ad (diff)
downloadsamba-5dc81da87e6a5947e9af6cf5856fdc400f5d44d2.tar.gz
samba-5dc81da87e6a5947e9af6cf5856fdc400f5d44d2.tar.xz
samba-5dc81da87e6a5947e9af6cf5856fdc400f5d44d2.zip
fixed %d which should be %u
(This used to be ctdb commit 2792cf718ff1e66fe99f870f683a13baa160f629)
Diffstat (limited to 'ctdb/common/ctdb_util.c')
-rw-r--r--ctdb/common/ctdb_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/common/ctdb_util.c b/ctdb/common/ctdb_util.c
index 629233fe5fa..bec4ccf860c 100644
--- a/ctdb/common/ctdb_util.c
+++ b/ctdb/common/ctdb_util.c
@@ -154,7 +154,7 @@ void *_ctdb_reqid_find(struct ctdb_context *ctdb, uint32_t reqid, const char *ty
p = _idr_find_type(ctdb->idr, (reqid>>16)&0xFFFF, type, location);
if (p == NULL) {
- DEBUG(0, ("Could not find idr:%d\n",reqid));
+ DEBUG(0, ("Could not find idr:%u\n",reqid));
}
return p;