Style: Use the correct type for a sizeof() variable.

This commit is contained in:
Tim Kientzle 2006-11-15 05:20:14 +00:00
parent ca743d5c67
commit 38c56af195

View File

@ -329,7 +329,7 @@ archive_write_shar_data_sed(struct archive *a, const void *buff, size_t n)
struct shar *shar;
const char *src;
int ret;
int written = n;
size_t written = n;
shar = (struct shar *)a->format_data;
if (!shar->has_data)