Skip to content
Snippets Groups Projects
  • Philippe Mathieu-Daudé's avatar
    e0c7de8d
    qom/object_interfaces: Clean up global variable shadowing · e0c7de8d
    Philippe Mathieu-Daudé authored
    
    Fix:
    
      qom/object_interfaces.c:262:53: error: declaration shadows a variable in the global scope [-Werror,-Wshadow]
      ObjectOptions *user_creatable_parse_str(const char *optarg, Error **errp)
                                                          ^
      qom/object_interfaces.c:298:46: error: declaration shadows a variable in the global scope [-Werror,-Wshadow]
      bool user_creatable_add_from_str(const char *optarg, Error **errp)
                                                   ^
      qom/object_interfaces.c:313:49: error: declaration shadows a variable in the global scope [-Werror,-Wshadow]
      void user_creatable_process_cmdline(const char *optarg)
                                                      ^
      /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/getopt.h:77:14: note: previous declaration is here
      extern char *optarg;                    /* getopt(3) external variables */
                   ^
    
    Signed-off-by: default avatarPhilippe Mathieu-Daudé <philmd@linaro.org>
    Message-ID: <20231004120019.93101-9-philmd@linaro.org>
    Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
    Signed-off-by: default avatarMarkus Armbruster <armbru@redhat.com>
    e0c7de8d
    History
    qom/object_interfaces: Clean up global variable shadowing
    Philippe Mathieu-Daudé authored
    
    Fix:
    
      qom/object_interfaces.c:262:53: error: declaration shadows a variable in the global scope [-Werror,-Wshadow]
      ObjectOptions *user_creatable_parse_str(const char *optarg, Error **errp)
                                                          ^
      qom/object_interfaces.c:298:46: error: declaration shadows a variable in the global scope [-Werror,-Wshadow]
      bool user_creatable_add_from_str(const char *optarg, Error **errp)
                                                   ^
      qom/object_interfaces.c:313:49: error: declaration shadows a variable in the global scope [-Werror,-Wshadow]
      void user_creatable_process_cmdline(const char *optarg)
                                                      ^
      /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/getopt.h:77:14: note: previous declaration is here
      extern char *optarg;                    /* getopt(3) external variables */
                   ^
    
    Signed-off-by: default avatarPhilippe Mathieu-Daudé <philmd@linaro.org>
    Message-ID: <20231004120019.93101-9-philmd@linaro.org>
    Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
    Signed-off-by: default avatarMarkus Armbruster <armbru@redhat.com>