diff options
author | Gerald Carter <jerry@samba.org> | 2003-09-22 17:53:59 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-09-22 17:53:59 +0000 |
commit | 88c95aa7351c6037cb9f92a2c67d96d6fef91377 (patch) | |
tree | 7f080cfc54a86b3627ecb77cb185b56d72a5360a /source3/tdb | |
parent | 68e83434b53ebc43ced224488749a3eb41624dd1 (diff) | |
download | samba-88c95aa7351c6037cb9f92a2c67d96d6fef91377.tar.gz samba-88c95aa7351c6037cb9f92a2c67d96d6fef91377.tar.bz2 samba-88c95aa7351c6037cb9f92a2c67d96d6fef91377.zip |
fix some warnings found by the Sun C compiler
(This used to be commit e1fac713e25692a5790c3261ba323732930f5249)
Diffstat (limited to 'source3/tdb')
-rw-r--r-- | source3/tdb/tdbutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/tdb/tdbutil.c b/source3/tdb/tdbutil.c index b01dacd0f5..bae9a8b9d4 100644 --- a/source3/tdb/tdbutil.c +++ b/source3/tdb/tdbutil.c @@ -807,7 +807,7 @@ TDB_LIST_NODE *tdb_search_keys(TDB_CONTEXT *tdb, const char* pattern) return list; -}; +} /** @@ -825,6 +825,6 @@ void tdb_search_list_free(TDB_LIST_NODE* node) SAFE_FREE(node); node = next_node; }; -}; +} |