[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:58:03 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit afa44628a7cc9da04b6caaa56a505e72200348c4
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Nov 8 14:56:26 2002 +0000

    	Fix deployment build breaker: a variable was used only in a
    	LOG statement, causing the variable to become usused when
    	building with the Deployment build style.
    
            * Downloads.subproj/WebDownloadHandler.m:
            (-[WebDownloadHandler finishedLoading])
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2599 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index d3807df..7a116cf 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-11-08  Ken Kocienda  <kocienda at apple.com>
+
+	Fix deployment build breaker: a variable was used only in a 
+	LOG statement, causing the variable to become usused when
+	building with the Deployment build style. 
+
+        * Downloads.subproj/WebDownloadHandler.m:
+        (-[WebDownloadHandler finishedLoading])
+
 2002-11-07  Darin Adler  <darin at apple.com>
 
         * History.subproj/WebHistoryItem.h: Replace _URL with _URLString.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index d3807df..7a116cf 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-11-08  Ken Kocienda  <kocienda at apple.com>
+
+	Fix deployment build breaker: a variable was used only in a 
+	LOG statement, causing the variable to become usused when
+	building with the Deployment build style. 
+
+        * Downloads.subproj/WebDownloadHandler.m:
+        (-[WebDownloadHandler finishedLoading])
+
 2002-11-07  Darin Adler  <darin at apple.com>
 
         * History.subproj/WebHistoryItem.h: Replace _URL with _URLString.
diff --git a/WebKit/Downloads.subproj/WebDownload.m b/WebKit/Downloads.subproj/WebDownload.m
index 7df61e2..fb92a70 100644
--- a/WebKit/Downloads.subproj/WebDownload.m
+++ b/WebKit/Downloads.subproj/WebDownload.m
@@ -340,9 +340,7 @@
 
     [self closeFile];
 
-    NSString *path = [[dataSource contentPolicy] path];
-    
-    LOG(Download, "Download complete. Saved to: %s", [path cString]);
+    LOG(Download, "Download complete. Saved to: %s", [[[dataSource contentPolicy] path] cString]);
 
     return nil;
 }
diff --git a/WebKit/Downloads.subproj/WebDownloadHandler.m b/WebKit/Downloads.subproj/WebDownloadHandler.m
index 7df61e2..fb92a70 100644
--- a/WebKit/Downloads.subproj/WebDownloadHandler.m
+++ b/WebKit/Downloads.subproj/WebDownloadHandler.m
@@ -340,9 +340,7 @@
 
     [self closeFile];
 
-    NSString *path = [[dataSource contentPolicy] path];
-    
-    LOG(Download, "Download complete. Saved to: %s", [path cString]);
+    LOG(Download, "Download complete. Saved to: %s", [[[dataSource contentPolicy] path] cString]);
 
     return nil;
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list