Title: [292423] trunk/Source/WebKit
Revision
292423
Author
cdu...@apple.com
Date
2022-04-05 14:30:35 -0700 (Tue, 05 Apr 2022)

Log Message

Unreviewed GTK build fix after r292408.

* Platform/unix/LoggingUnix.cpp:
(WebKit::logLevelString):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (292422 => 292423)


--- trunk/Source/WebKit/ChangeLog	2022-04-05 21:27:29 UTC (rev 292422)
+++ trunk/Source/WebKit/ChangeLog	2022-04-05 21:30:35 UTC (rev 292423)
@@ -1,5 +1,12 @@
 2022-04-05  Chris Dumez  <cdu...@apple.com>
 
+        Unreviewed GTK build fix after r292408.
+
+        * Platform/unix/LoggingUnix.cpp:
+        (WebKit::logLevelString):
+
+2022-04-05  Chris Dumez  <cdu...@apple.com>
+
         Unreviewed build fix after r292408.
 
         * NetworkProcess/cocoa/NetworkSessionCocoa.mm:

Modified: trunk/Source/WebKit/Platform/unix/LoggingUnix.cpp (292422 => 292423)


--- trunk/Source/WebKit/Platform/unix/LoggingUnix.cpp	2022-04-05 21:27:29 UTC (rev 292422)
+++ trunk/Source/WebKit/Platform/unix/LoggingUnix.cpp	2022-04-05 21:30:35 UTC (rev 292423)
@@ -34,7 +34,7 @@
 String logLevelString()
 {
 #if !LOG_DISABLED
-    return getenv("WEBKIT_DEBUG");
+    return String { getenv("WEBKIT_DEBUG") };
 #else
     return String();
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to