typo fix from qmc2 (no whatsnew)

This commit is contained in:
Miodrag Milanovic 2012-12-10 12:26:49 +00:00
parent 7ac70e7ee5
commit 83c7f8c03c

View File

@ -82,13 +82,13 @@ void sdloutput_init(running_machine &machine)
if (fildes < 0) if (fildes < 0)
{ {
output = NULL; output = NULL;
mame_printf_verbose("ouput: unable to open output notifier file %s\n", SDLMAME_OUTPUT); mame_printf_verbose("output: unable to open output notifier file %s\n", SDLMAME_OUTPUT);
} }
else else
{ {
output = fdopen(fildes, "w"); output = fdopen(fildes, "w");
mame_printf_verbose("ouput: opened output notifier file %s\n", SDLMAME_OUTPUT); mame_printf_verbose("output: opened output notifier file %s\n", SDLMAME_OUTPUT);
fprintf(output, "MAME " PID_FMT " START %s\n", osd_getpid(), machine.system().name); fprintf(output, "MAME " PID_FMT " START %s\n", osd_getpid(), machine.system().name);
fflush(output); fflush(output);
} }
@ -109,7 +109,7 @@ static void sdloutput_exit(running_machine &machine)
fflush(output); fflush(output);
fclose(output); fclose(output);
output = NULL; output = NULL;
mame_printf_verbose("ouput: closed output notifier file\n"); mame_printf_verbose("output: closed output notifier file\n");
} }
} }