From 1cb13d30835efee957d72558d419e78de9804e8b Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 9 Jun 2015 20:41:29 +0200 Subject: [PATCH] Cosmetic change: use 0 rather than \0 for pointer --- src/record_conv.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/record_conv.c b/src/record_conv.c index b117340..02eebb6 100644 --- a/src/record_conv.c +++ b/src/record_conv.c @@ -190,8 +190,7 @@ static void *construct_xslt(const xmlNode *ptr, info->xsl_parms[2 * no_parms + 1] = qvalue; no_parms++; } - - info->xsl_parms[2 * no_parms] = '\0'; + info->xsl_parms[2 * no_parms] = 0; if (!stylesheet) { -- 1.7.10.4