Browse Source

testaudiocapture.c: added missing return statement to main()

Ozkan Sezer 2 years ago
parent
commit
dfff017fc6
1 changed files with 3 additions and 1 deletions
  1. 3 1
      test/testaudiocapture.c

+ 3 - 1
test/testaudiocapture.c

@@ -197,10 +197,12 @@ int main(int argc, char **argv)
         }
         }
     }
     }
 #endif
 #endif
+
     /* SDL_DestroyRenderer(renderer); */
     /* SDL_DestroyRenderer(renderer); */
     /* SDL_DestroyWindow(window); */
     /* SDL_DestroyWindow(window); */
 
 
     /* SDL_Quit(); */
     /* SDL_Quit(); */
     /* SDLTest_CommonDestroyState(state); */
     /* SDLTest_CommonDestroyState(state); */
-    /* return 0; */
+
+    return 0;
 }
 }