Commit 82a7f72c authored by Mike Gabriel's avatar Mike Gabriel

Xserver/dix/main.c: ErrorF requires a string to end with an EOL char.

parent 8383b192
...@@ -388,7 +388,7 @@ main(int argc, char *argv[], char *envp[]) ...@@ -388,7 +388,7 @@ main(int argc, char *argv[], char *envp[])
SetFontPath(0, 0, (unsigned char *)defaultFontPath, &error); SetFontPath(0, 0, (unsigned char *)defaultFontPath, &error);
} else { } else {
if (SetDefaultFontPath(defaultFontPath) != Success) if (SetDefaultFontPath(defaultFontPath) != Success)
ErrorF("failed to set default font path '%s'", ErrorF("failed to set default font path '%s'\n",
defaultFontPath); defaultFontPath);
} }
if (!SetDefaultFont(defaultTextFont)) if (!SetDefaultFont(defaultTextFont))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment