diff options
author | Volker Lendecke <vl@samba.org> | 2013-03-18 10:53:49 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2013-03-26 10:11:47 +0100 |
commit | a92c08e18bca2f1db671dc5e2d0db4adbf39752d (patch) | |
tree | 4007560c65dff3fb94b124ab39b10b14af3b1ab2 /lib | |
parent | d4ebeeb78865c6a20a85437b82a1302921f3d1fe (diff) | |
download | samba-a92c08e18bca2f1db671dc5e2d0db4adbf39752d.tar.gz samba-a92c08e18bca2f1db671dc5e2d0db4adbf39752d.tar.bz2 samba-a92c08e18bca2f1db671dc5e2d0db4adbf39752d.zip |
tdb: Little format change
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tdb/common/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tdb/common/io.c b/lib/tdb/common/io.c index b9caffb1e5..7e29c38440 100644 --- a/lib/tdb/common/io.c +++ b/lib/tdb/common/io.c @@ -84,7 +84,7 @@ static int tdb_oob(struct tdb_context *tdb, tdb_off_t off, tdb_len_t len, } tdb->map_size = st.st_size; if (tdb_mmap(tdb) != 0) { - return - 1; + return -1; } if (st.st_size < (size_t)off + len) { |