diff options
author | Günther Deschner <gd@samba.org> | 2011-02-02 12:50:42 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-02-02 15:44:21 +0100 |
commit | 50be0b2c1e7e0573245e21df886ab491a0738226 (patch) | |
tree | 32e78d9652de8f24255b0952e8347b51bbb23dac /source3/registry | |
parent | 3bdd2efff8d11448275965b464ac194a2ee0d3ae (diff) | |
download | samba-50be0b2c1e7e0573245e21df886ab491a0738226.tar.gz samba-50be0b2c1e7e0573245e21df886ab491a0738226.tar.bz2 samba-50be0b2c1e7e0573245e21df886ab491a0738226.zip |
s3: Remove superfluous ;
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Wed Feb 2 15:44:21 CET 2011 on sn-devel-104
Diffstat (limited to 'source3/registry')
-rw-r--r-- | source3/registry/regfio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/registry/regfio.c b/source3/registry/regfio.c index 7ab262d822..e300b144cf 100644 --- a/source3/registry/regfio.c +++ b/source3/registry/regfio.c @@ -1478,7 +1478,7 @@ static REGF_HBIN* regf_hbin_allocate( REGF_FILE *file, uint32 block_size ) hbin->file_off = sbuf.st_ex_size; hbin->free_off = HBIN_HEADER_REC_SIZE; - hbin->free_size = block_size - hbin->free_off + sizeof(uint32);; + hbin->free_size = block_size - hbin->free_off + sizeof(uint32); hbin->block_size = block_size; hbin->first_hbin_off = hbin->file_off - REGF_BLOCKSIZE; |