[glib/glib-2-56] gobject: Fix redundant warning message in glib-genmarshal



commit 926a5c5e5389b6869e59f6c661f531e0b101c5fd
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]