Don't print NULL strings (crashes on Solaris).
Small code maintainability tweak in ShellExecuteExA.
Two typo fixes in winmm.
diff --git a/loader/module.c b/loader/module.c
index 32f8d57..6bd5c6c 100644
--- a/loader/module.c
+++ b/loader/module.c
@@ -1045,7 +1045,7 @@
/* Process the AppName and/or CmdLine to get module name and path */
- TRACE("app '%s' cmdline '%s'\n", lpApplicationName, lpCommandLine );
+ TRACE("app %s cmdline %s\n", debugstr_a(lpApplicationName), debugstr_a(lpCommandLine) );
if (!(tidy_cmdline = get_file_name( lpApplicationName, lpCommandLine, name, sizeof(name) )))
return FALSE;