cleanup: remove unnecessary (=invisible) leading spaces

This commit is contained in:
marschap
2006-04-27 15:01:49 +00:00
parent 1aff9c4226
commit 9b111eeac4
44 changed files with 236 additions and 236 deletions
+4 -4
View File
@@ -132,7 +132,7 @@ MODULE_EXPORT int imon_init (Driver *drvthis)
memset(p->framebuf, ' ', p->width * p->height);
report(RPT_DEBUG, "%s: init() done", drvthis->name);
return 1;
}
@@ -297,7 +297,7 @@ MODULE_EXPORT int imon_width (Driver *drvthis)
MODULE_EXPORT int imon_height (Driver *drvthis)
{
PrivateData *p = drvthis->private_data;
return p->height;
}
@@ -307,7 +307,7 @@ MODULE_EXPORT int imon_height (Driver *drvthis)
MODULE_EXPORT int imon_cellwidth (Driver *drvthis)
{
PrivateData *p = drvthis->private_data;
return p->cellwidth;
}
@@ -317,7 +317,7 @@ MODULE_EXPORT int imon_cellwidth (Driver *drvthis)
MODULE_EXPORT int imon_cellheight (Driver *drvthis)
{
PrivateData *p = drvthis->private_data;
return p->cellheight;
}