From b6856e8dbf2afb7583373652d02f1ea06371d9e6 Mon Sep 17 00:00:00 2001 From: Frank Morgner Date: Mon, 30 Nov 2015 01:33:11 +0100 Subject: [PATCH] don't use unicode ticks --- src/libopensc/ctx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libopensc/ctx.c b/src/libopensc/ctx.c index fb7b347b..489d5796 100644 --- a/src/libopensc/ctx.c +++ b/src/libopensc/ctx.c @@ -336,9 +336,9 @@ static const char *find_library(sc_context_t *ctx, const char *name) continue; libname = scconf_get_str(blk, "module", name); #ifdef _WIN32 - log_warning = libname && libname[0] != ‘\\'; + log_warning = libname && libname[0] != '\\'; #else - log_warning = libname && libname[0] != ‘/‘; + log_warning = libname && libname[0] != '/'; #endif if (log_warning) sc_log(ctx, "warning: relative path to driver '%s' used", libname);