diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-11-26 23:06:51 -0500 |
---|---|---|
committer | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-12-05 23:07:17 -0500 |
commit | 0494a763402eada02bdd4d5c211816ac73745eb2 (patch) | |
tree | 899a6eba6a9b746a1256b49a2805c8f0593ff570 /manual tests/1 wrap | |
parent | ccefc00a59c5766b3ca9db51bae9f1ba7d78e98a (diff) | |
download | meson-0494a763402eada02bdd4d5c211816ac73745eb2.zip meson-0494a763402eada02bdd4d5c211816ac73745eb2.tar.gz meson-0494a763402eada02bdd4d5c211816ac73745eb2.tar.bz2 |
c/cpp: removed unused args
Diffstat (limited to 'manual tests/1 wrap')
-rw-r--r-- | manual tests/1 wrap/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual tests/1 wrap/main.c b/manual tests/1 wrap/main.c index 39d3a9a..df6abe4 100644 --- a/manual tests/1 wrap/main.c +++ b/manual tests/1 wrap/main.c @@ -1,7 +1,7 @@ #include<sqlite3.h> #include<stdio.h> -int main(int argc, char **argv) { +int main(void) { sqlite3 *db; if(sqlite3_open(":memory:", &db) != SQLITE_OK) { printf("Sqlite failed.\n"); |