From 8fa960686724e2840028bde6f9f821ff9bbb2a46 Mon Sep 17 00:00:00 2001 From: handa Date: Sun, 21 Mar 2004 23:59:40 +0000 Subject: [PATCH] (m17n_init): Fix the way of checking merror_code. --- src/m17n.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/m17n.c b/src/m17n.c index 0b658d0..d8ca38f 100644 --- a/src/m17n.c +++ b/src/m17n.c @@ -45,7 +45,7 @@ m17n_init (void) if (shell_initialized) return; m17n_init_core (); - if (merror_code < 0) + if (merror_code != MERROR_NONE) return; MDEBUG_PUSH_TIME (); MDEBUG_PUSH_TIME (); -- 1.7.10.4