Add a missing parameter in report call

This commit is contained in:
mmdolze
2009-03-26 19:52:09 +00:00
parent 0d846991fb
commit 69d963fed2
+2 -1
View File
@@ -393,7 +393,8 @@ HD44780_init(Driver *drvthis)
// consistency check: fail if local senddata function was not defined
if (p->hd44780_functions->senddata == NULL) {
report(RPT_ERR, "%s: incomplete functions for connection type");
report(RPT_ERR, "%s: incomplete functions for connection type",
drvthis->name);
return -1;
}