diff options
Diffstat (limited to 'mysys/errors.c')
-rw-r--r-- | mysys/errors.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/errors.c b/mysys/errors.c index c2c1b8ffcc3..6e9f1fabab0 100644 --- a/mysys/errors.c +++ b/mysys/errors.c @@ -50,14 +50,14 @@ const char * NEAR globerrs[GLOBERRS]= void init_glob_errs(void) { - errmsg[GLOB] = & globerrs[0]; + my_errmsg[GLOB] = & globerrs[0]; } /* init_glob_errs */ #else void init_glob_errs() { - errmsg[GLOB] = & globerrs[0]; + my_errmsg[GLOB] = & globerrs[0]; EE(EE_FILENOTFOUND) = "File '%s' not found (Errcode: %d)"; EE(EE_CANTCREATEFILE) = "Can't create/write to file '%s' (Errcode: %d)"; |