mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-21 17:37:53 +02:00
Fix a lot of clang complaints
Mostly dead assignments.
This commit is contained in:
@@ -1418,8 +1418,7 @@ g_build_path_va (const gchar *separator,
|
||||
|
||||
if (separator_len)
|
||||
{
|
||||
while (start &&
|
||||
strncmp (start, separator, separator_len) == 0)
|
||||
while (strncmp (start, separator, separator_len) == 0)
|
||||
start += separator_len;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user