diff --git a/database/DBcellbox.c b/database/DBcellbox.c index 55b8f327..836c677e 100644 --- a/database/DBcellbox.c +++ b/database/DBcellbox.c @@ -59,15 +59,15 @@ static char rcsid[] __attribute__ ((unused)) = "$Header: /usr/cvsroot/magic-8.0/ */ char * -DBPrintUseId(scx, name, size, display_only) - SearchContext *scx; /* Pointer to current search context, specifying a +DBPrintUseId( + SearchContext *scx, /* Pointer to current search context, specifying a * cell use and X,Y array indices. */ - char *name; /* Pointer to string into which we will copy the + char *name, /* Pointer to string into which we will copy the * print name of this instance. */ - int size; /* Maximum number of characters to copy into string. */ - bool display_only; /* TRUE if called for displaying only */ + int size, /* Maximum number of characters to copy into string. */ + bool display_only) /* TRUE if called for displaying only */ { CellUse *use = scx->scx_use; char *sp, *id, *ep; diff --git a/database/database.h.in b/database/database.h.in index 0a0b16a8..3d28bf02 100644 --- a/database/database.h.in +++ b/database/database.h.in @@ -879,7 +879,7 @@ extern void DBSetTrans(); extern void DBArrayOverlap(); extern void DBComputeArrayArea(); extern Transform *DBGetArrayTransform(); -extern char *DBPrintUseId(); +extern char *DBPrintUseId(SearchContext *scx, char *name, int size, bool display_only); /* Massive copying */ extern void DBCellCopyPaint();