From a563a049dea970cb171e72bbc268a33759e5e31f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zden=C4=9Bk=20Salvet?= Date: Thu, 18 Mar 2010 10:19:45 +0000 Subject: [PATCH] Add missing newline in warning. --- org.glite.lbjp-common.db/src/db-mysql.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.glite.lbjp-common.db/src/db-mysql.c b/org.glite.lbjp-common.db/src/db-mysql.c index 6c908d1..d3ed647 100644 --- a/org.glite.lbjp-common.db/src/db-mysql.c +++ b/org.glite.lbjp-common.db/src/db-mysql.c @@ -276,7 +276,7 @@ int glite_lbu_InitDBContextMysql(glite_lbu_DBContext *ctx_gen) { // check the runtime version ver_u = mysql_module.mysql_get_client_version(); if (ver_u != MYSQL_VERSION_ID) { - fprintf(stderr,"Warning: MySQL library version mismatch (compiled '%d', runtime '%d')", MYSQL_VERSION_ID, ver_u); + fprintf(stderr,"Warning: MySQL library version mismatch (compiled '%d', runtime '%d')\n", MYSQL_VERSION_ID, ver_u); #ifdef SYSLOG_H syslog(LOG_WARNING,"MySQL library version mismatch (compiled '%d', runtime '%d')", MYSQL_VERSION_ID, ver_u); #endif -- 1.8.2.3