diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2011-12-13 15:45:59 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2011-12-13 15:45:59 +0100 |
commit | 24743158811a1f5a6aa930be8d4cad7d4f9ac22f (patch) | |
tree | 182c3108dc20eaf178f0f7f02cc12b1a9e52b814 /fastwriter.h | |
parent | a77e7147c1814b4ed19d6abce417c8d8c627cc32 (diff) | |
download | fastwriter-24743158811a1f5a6aa930be8d4cad7d4f9ac22f.tar.gz fastwriter-24743158811a1f5a6aa930be8d4cad7d4f9ac22f.tar.bz2 fastwriter-24743158811a1f5a6aa930be8d4cad7d4f9ac22f.tar.xz fastwriter-24743158811a1f5a6aa930be8d4cad7d4f9ac22f.zip |
Just push instead push_chunk
Diffstat (limited to 'fastwriter.h')
-rw-r--r-- | fastwriter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fastwriter.h b/fastwriter.h index 389b0a9..b6b1f37 100644 --- a/fastwriter.h +++ b/fastwriter.h @@ -35,7 +35,7 @@ int fastwriter_get_stats(fastwriter_t *ctx, fastwriter_stats_t *stats); int fastwriter_open(fastwriter_t *ctx, const char *name, fastwriter_flags_t flags); int fastwriter_close(fastwriter_t *ctx); -int fastwriter_push_chunk(fastwriter_t *ctx, size_t size, const void *buf); +int fastwriter_push(fastwriter_t *ctx, size_t size, const void *buf); int fastwriter_commit(fastwriter_t *ctx); int fastwriter_cancel(fastwriter_t *ctx); |