From 1bc228f769be2999c10beefe224517804bb0316c Mon Sep 17 00:00:00 2001 From: Mariusz Dykierek Date: Mon, 23 Jan 2012 12:52:55 +0000 Subject: Same expression on both sides of || in if condition --- svtools/source/misc/filechangedchecker.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svtools/source/misc/filechangedchecker.cxx') diff --git a/svtools/source/misc/filechangedchecker.cxx b/svtools/source/misc/filechangedchecker.cxx index 514841fc8166..50d73da26d9d 100644 --- a/svtools/source/misc/filechangedchecker.cxx +++ b/svtools/source/misc/filechangedchecker.cxx @@ -83,7 +83,7 @@ bool FileChangedChecker::hasFileChanged() // Check if the seconds time stamp has any difference // If so, then our file has changed meanwhile if( newTime.Seconds != mLastModTime.Seconds || - newTime.Seconds != mLastModTime.Seconds ) + newTime.Nanosec != mLastModTime.Nanosec ) { // Since the file has changed, set the new status as the file status and // return True -- cgit