(svn r17533) -Fix: missing 'const'
This commit is contained in:
		@@ -65,7 +65,7 @@ private:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	static const char *GetDriverTypeName(Driver::Type type)
 | 
						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];
 | 
							return driver_type_name[type];
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user