Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Feb 26, 2013
1 parent ad385e5 commit 56b1522
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doomsday/client/src/filesys/sys_direc.cpp
Expand Up @@ -415,6 +415,6 @@ boolean Dir_SetCurrent(const char* path)
{
success = !_chdir(path);
}
LOG_VERBOSE("Changing current directory to \"%s\" %s") << (success? "succeeded" : "failed") << path;
LOG_VERBOSE("Changing current directory to \"%s\" %s") << path << (success? "succeeded" : "failed");
return success;
}
2 changes: 1 addition & 1 deletion doomsday/client/src/ui/displaymode.cpp
@@ -1,4 +1,4 @@
/** @file displaymode.cpp Platform-independent display mode management.
/** @file displaymode.cpp Platform-independent display mode management.
* @ingroup gl
*
* @authors Copyright (c) 2012-2013 Jaakko Keränen <jaakko.keranen@iki.fi>
Expand Down

0 comments on commit 56b1522

Please sign in to comment.