mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-15 19:22:22 +00:00
Bug #10560: Code-Cleanup: function declarations () -> (void)
X.Org Bugzilla #10560: <https://bugs.freedesktop.org/show_bug.cgi?id=10560> Patch #9511 <https://bugs.freedesktop.org/attachment.cgi?id=9511>
This commit is contained in:
parent
f24391dbfd
commit
1f6741db19
23 changed files with 68 additions and 68 deletions
4
os/log.c
4
os/log.c
|
|
@ -221,7 +221,7 @@ LogInit(const char *fname, const char *backup)
|
|||
}
|
||||
|
||||
void
|
||||
LogClose()
|
||||
LogClose(void)
|
||||
{
|
||||
if (logFile) {
|
||||
fclose(logFile);
|
||||
|
|
@ -616,7 +616,7 @@ Error(char *str)
|
|||
}
|
||||
|
||||
void
|
||||
LogPrintMarkers()
|
||||
LogPrintMarkers(void)
|
||||
{
|
||||
/* Show what the message marker symbols mean. */
|
||||
ErrorF("Markers: ");
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ typedef struct _builtinColor {
|
|||
#define NUM_BUILTIN_COLORS (sizeof (BuiltinColors) / sizeof (BuiltinColors[0]))
|
||||
|
||||
Bool
|
||||
OsInitColors()
|
||||
OsInitColors(void)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue