diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-10-03 14:37:18 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-10-03 14:37:18 +0000 |
commit | facb597f48e6ecc782f5fc1919499236b4a2294a (patch) | |
tree | 8ccbbd3e0aaf463c95d0777ecbe0dbc8f68da79d | |
parent | 5fd77da4f691ee7ace6dfa9d2ff49535899f895d (diff) |
fix error message (bug 816876)
-rw-r--r-- | src/glut/glx/win32_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glut/glx/win32_util.c b/src/glut/glx/win32_util.c index d05d1d1e82..becd823a40 100644 --- a/src/glut/glx/win32_util.c +++ b/src/glut/glx/win32_util.c @@ -66,7 +66,7 @@ __glutFont(void *font) case (int)GLUT_BITMAP_HELVETICA_18: return &glutBitmapHelvetica18; } - __glutFatalError("out of memory."); + __glutFatalError("font not found."); /* NOTREACHED */ return NULL; /* MSVC compiler complains if there is no return at all */ } |