]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
silence dead code warning in version.cc
authorKees Monshouwer <mind04@monshouwer.org>
Fri, 26 Jul 2013 18:57:29 +0000 (20:57 +0200)
committermind04 <mind04@monshouwer.org>
Wed, 31 Jul 2013 09:39:37 +0000 (11:39 +0200)
pdns/version.cc

index e576c4970550d7f59ed2bfed170aac836930ac50..3eceba95f599286fd1acc2981f1d66df3f467b4c 100644 (file)
@@ -30,8 +30,9 @@ string compilerVersion()
   return string("gcc "__VERSION__);
 #elif defined(_MSC_VER)
   return string("MSVC "<<_MSC_VER);
-#endif // add other compilers here
+#else  // add other compilers here
   return string("Unknown compiler");
+#endif
 }
 
 void showProductVersion()