From 95902cd275516d098128fc0e1c50e53f2a7473f5 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 29 Oct 2010 08:31:54 +0000 Subject: [PATCH] Fixed warning --- src/osg/glu/libutil/error.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osg/glu/libutil/error.cpp b/src/osg/glu/libutil/error.cpp index 1e87de366..1f886e3cc 100644 --- a/src/osg/glu/libutil/error.cpp +++ b/src/osg/glu/libutil/error.cpp @@ -132,7 +132,7 @@ static const struct token_string Errors[] = { { GLU_OUT_OF_MEMORY, "out of memory" }, { GLU_INCOMPATIBLE_GL_VERSION, "incompatible gl version" }, { GLU_INVALID_OPERATION, "invalid operation" }, - { ~0, NULL } /* end of list indicator */ + { ~0u, NULL } /* end of list indicator */ };