[glib] gobject: Fix redundant warning message in glib-genmarshal
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] gobject: Fix redundant warning message in glib-genmarshal
- Date: Mon, 23 Apr 2018 15:17:28 +0000 (UTC)
commit 807648663df75271c351e25439481fe5905848b7
Author: Kentaro Hayashi <hayashi clear-code com>
Date: Sat Apr 21 17:13:32 2018 +0900
gobject: Fix redundant warning message in glib-genmarshal
glib-genmarshal shows redundant "time" warning message against combination with --header and --body
option.
Before:
WARNING: Using --header and --body at the same time time is deprecated; use --body --prototypes instead
After:
WARNING: Using --header and --body at the same time is deprecated; use --body --prototypes instead
https://bugzilla.gnome.org/show_bug.cgi?id=795429
Signed-off-by: Kentaro Hayashi <hayashi clear-code com>
gobject/glib-genmarshal.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gobject/glib-genmarshal.in b/gobject/glib-genmarshal.in
index 3656bf93c..dc4c7eacc 100755
--- a/gobject/glib-genmarshal.in
+++ b/gobject/glib-genmarshal.in
@@ -950,7 +950,7 @@ if __name__ == '__main__':
# warning non-fatal even with --g-fatal-warnings, as it's a deprecation
compatibility_mode = False
if args.header and args.body:
- print_warning('Using --header and --body at the same time time is deprecated; ' +
+ print_warning('Using --header and --body at the same time is deprecated; ' +
'use --body --prototypes instead', False)
args.prototypes = True
args.header = False
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]