comparison tools/packed.c @ 1035:d2fa4f6d6117

Oops, add a missing semicolon.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 01 Mar 2015 16:41:01 +0200
parents c353e6bcb733
children 1a0a327d8fed
comparison
equal deleted inserted replaced
1034:2e9ba01294b3 1035:d2fa4f6d6117
360 } 360 }
361 } 361 }
362 } 362 }
363 363
364 // Create directory entry 364 // Create directory entry
365 strncpy(entry.filename, filename, DMRES_NAME_LEN) 365 strncpy(entry.filename, filename, DMRES_NAME_LEN);
366 entry.filename[DMRES_NAME_LEN] = 0; 366 entry.filename[DMRES_NAME_LEN] = 0;
367 entry.offset = startOffs; 367 entry.offset = startOffs;
368 entry.size = zstr.total_in; 368 entry.size = zstr.total_in;
369 entry.length = outSize; 369 entry.length = outSize;
370 entry.flags = flags | (compress ? DMF_COMPRESSED : 0); 370 entry.flags = flags | (compress ? DMF_COMPRESSED : 0);