Skip to content

Commit

Permalink
Fixed|libcore: Inadvertent argument shadowing
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 24, 2016
1 parent ea99119 commit 12a7694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/sdk/libcore/src/filesys/file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ String File::description(int verbosity) const
if (verbosity < 0)
{
Log &log = Log::threadLog();
int verbosity = 0;
verbosity = 0;
if (!log.isStaging() || (log.currentEntryMetadata() & LogEntry::Dev))
{
// For dev entries and everything outside log entries, use a full description.
Expand Down

0 comments on commit 12a7694

Please sign in to comment.