Browse Source

fix redundant return statement at the end of a function with a void return type

Karel Miko 7 years ago
parent
commit
061fe36114
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/math/multi.c

+ 0 - 1
src/math/multi.c

@@ -67,7 +67,6 @@ void ltc_cleanup_multi(void **a, ...)
       cur = va_arg(args, void**);
       cur = va_arg(args, void**);
    }
    }
    va_end(args);
    va_end(args);
-   return;
 }
 }
 
 
 #endif
 #endif