(svn r17533) -Fix: missing 'const'

This commit is contained in:
smatz 2009-09-13 23:30:29 +00:00
parent ebd916be3d
commit d96333b7c3
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ private:
static const char *GetDriverTypeName(Driver::Type type)
{
static const char *driver_type_name[] = { "sound", "music", "video" };
static const char * const driver_type_name[] = { "sound", "music", "video" };
return driver_type_name[type];
}