]> granicus.if.org Git - clang/commitdiff
[analyzer] scan-build: add missing semicolon
authorJordan Rose <jordan_rose@apple.com>
Mon, 16 Sep 2013 16:17:18 +0000 (16:17 +0000)
committerJordan Rose <jordan_rose@apple.com>
Mon, 16 Sep 2013 16:17:18 +0000 (16:17 +0000)
Patch by Kevin Zheng!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@190789 91177308-0d34-0410-b5e6-96231b3b80d8

tools/scan-build/scan-build

index 4fcd74efe824f35e1f8b0ca2717d6e6c2cab8074..0f119f604986226ab6bd9012b106139be3be0b9a 100755 (executable)
@@ -139,7 +139,7 @@ sub GetHTMLRunDir {
   my $min =   $CurrentTime[1];
   my $sec =   $CurrentTime[0];
 
-  my $TimeString = sprintf("%02d%02d%02d", $hour, $min, $sec)
+  my $TimeString = sprintf("%02d%02d%02d", $hour, $min, $sec);
   my $DateString = sprintf("%d-%02d-%02d-%s-$$",
                            $year, $month, $day, $TimeString);