]> sigrok.org Git - libserialport.git/commit
Fix a compiler warning when -Wshadow is used.
authorUwe Hermann <redacted>
Sat, 11 Apr 2015 19:03:53 +0000 (21:03 +0200)
committerUwe Hermann <redacted>
Sat, 18 Apr 2015 19:54:42 +0000 (21:54 +0200)
commit613c48f19198f53a8241114d89958c720fbc924a
tree47ea0213c1276a2a30c0e49dedaf985d5020a0f6
parentb3e619c8b2d11c8d719a0d7714cfc024b45c5339
Fix a compiler warning when -Wshadow is used.

    CC       serialport.lo
  In file included from ../serialport.c:25:0:
  ../serialport.c: In function 'get_config':
  ../libserialport_internal.h:227:25: warning: declaration of 'ret' shadows a previous local [-Wshadow]
   #define TRY(x) do { int ret = x; if (ret != SP_OK) RETURN_CODEVAL(ret); } while (0)
                           ^
  ../serialport.c:1566:3: note: in expansion of macro 'TRY'
     TRY(get_baudrate(port->fd, &config->baudrate));
     ^
  ../serialport.c:1543:6: warning: shadowed declaration is here [-Wshadow]
    int ret = get_flow(port->fd, data);
        ^

Also, add -Wshadow to the list of default compiler options.
configure.ac
libserialport_internal.h