1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r2092: fix the build(don't catch main() by make proto)

metze
(This used to be commit ecdb0b4426)
This commit is contained in:
Stefan Metzmacher 2004-08-27 18:00:55 +00:00 committed by Gerald (Jerry) Carter
parent ef9351d84b
commit 2812998ae9
2 changed files with 2 additions and 2 deletions

View File

@ -229,7 +229,7 @@ static void merge_test(void)
tdb_delete(db, key);
}
int main(int argc, char *argv[])
int main(int argc, const char *argv[])
{
int i, seed=0;
int loops = 10000;

View File

@ -185,7 +185,7 @@ static int traverse_fn(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA dbuf,
#define NLOOPS 200000
#endif
int main(int argc, char *argv[])
int main(int argc, const char *argv[])
{
int i, seed=0;
int loops = NLOOPS;