Fix incorrect function name (C. Markle)

This commit is contained in:
mmdolze
2009-03-19 07:03:30 +00:00
parent 9db3ee9298
commit e0b1d1a0b3
+3 -3
View File
@@ -1263,11 +1263,11 @@ pyramid_get_key (Driver *drvthis)
* \return Constant string with information.
*/
MODULE_EXPORT const char *
pylcd_get_info (Driver *drvthis)
pyramid_get_info (Driver *drvthis)
{
static char *pylcd_info_string="Pyramid LCD driver";
static char *pyramid_info_string="Pyramid LCD driver";
return pylcd_info_string;
return pyramid_info_string;
};