summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/attotime.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/attotime.c')
-rw-r--r--src/emu/attotime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/attotime.c b/src/emu/attotime.c
index 12b9c537dd2..d28f832ceca 100644
--- a/src/emu/attotime.c
+++ b/src/emu/attotime.c
@@ -148,7 +148,7 @@ const char *attotime::as_string(int precision) const
static char buffers[8][30];
static int nextbuf;
char *buffer = &buffers[nextbuf++ % 8][0];
-
+
// special case: never
if (*this == never)
sprintf(buffer, "%-*s", precision, "(never)");