diff options
author | Pino Toscano <toscano.pino@tiscali.it> | 2013-03-16 14:32:31 +0100 |
---|---|---|
committer | Pino Toscano <toscano.pino@tiscali.it> | 2013-03-16 14:32:31 +0100 |
commit | 09a547f9155e54fd34c4fab20ff98d906cedb2c2 (patch) | |
tree | 942a4d4bf9d3681d3a630583a9712a988f94f277 | |
parent | 3f06ded61ba1373f44e87d1f6d266fb3baa29314 (diff) |
Fix typo in variable name
* zipstores.c (ZIP (stream_write_init)): Use ZERR instead of ERR.
-rw-r--r-- | zipstores.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zipstores.c b/zipstores.c index 43f38eda7..ca8beaa3b 100644 --- a/zipstores.c +++ b/zipstores.c @@ -260,7 +260,7 @@ ZIP (stream_write_init) (struct ZIP (object) *zip) if (stream->state) { zerr = ZIP_COMPRESS_END (stream); - err = ZIP (error) (stream, err); + err = ZIP (error) (stream, zerr); assert_perror (err); } #ifdef ZIP_HAS_HEADER |