[Xfce4-commits] [apps/xfce4-terminal] 01/01: Fix clang uninitialized value warning
noreply at xfce.org
noreply at xfce.org
Wed Jul 13 13:03:47 CEST 2016
This is an automated email from the git hooks/post-receive script.
f2404 pushed a commit to branch master
in repository apps/xfce4-terminal.
commit 50bfaedaf6bfa22a6144efec578a54a8ffd9a28a
Author: Igor <f2404 at yandex.ru>
Date: Wed Jul 13 14:03:33 2016 +0300
Fix clang uninitialized value warning
---
terminal/terminal-preferences-dialog.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/terminal/terminal-preferences-dialog.c b/terminal/terminal-preferences-dialog.c
index 53f80a7..d655a67 100644
--- a/terminal/terminal-preferences-dialog.c
+++ b/terminal/terminal-preferences-dialog.c
@@ -452,7 +452,7 @@ terminal_preferences_dialog_geometry (TerminalPreferencesDialog *dialog,
gint rows)
{
gint x, y;
- guint w, h;
+ guint w = 0, h = 0;
gchar *geo;
gint mask = NoValue;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list