From b8e6b936e4381a8d8f3a12260a11d36faf000ea2 Mon Sep 17 00:00:00 2001 From: Frank Celler Date: Tue, 13 Mar 2012 16:56:16 +0100 Subject: [PATCH] fixed error message --- VocBase/vocbase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VocBase/vocbase.c b/VocBase/vocbase.c index 20e5e4ba5f..45a32a26fd 100644 --- a/VocBase/vocbase.c +++ b/VocBase/vocbase.c @@ -206,7 +206,7 @@ static TRI_vocbase_col_t* AddCollection (TRI_vocbase_t* vocbase, if (found != NULL) { TRI_Free(col); - LOG_ERROR("duplicate entry for identifier '%s'", cid); + LOG_ERROR("duplicate collection identifier '%lu' for name '%s'", (unsigned long) cid, name); return NULL; } }