summaryrefslogtreecommitdiff
path: root/src/multipart-replace.h
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-04-12 00:01:27 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-04-12 00:01:27 -0400
commit24de3887e5e3bba2b8a4f60d1224ac927b98b1ed (patch)
tree20a27018a7fae78205e0bfee7fac4db4c82c0dea /src/multipart-replace.h
parentc8f6735fce3d7ba5aa8019775d26b6999ed5a344 (diff)
stuff
- fix memory leaks (except for those from libusb) - fix graceful shutdown - fix systemd weirdness
Diffstat (limited to 'src/multipart-replace.h')
-rw-r--r--src/multipart-replace.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/multipart-replace.h b/src/multipart-replace.h
index 502cecc..e4cced0 100644
--- a/src/multipart-replace.h
+++ b/src/multipart-replace.h
@@ -34,8 +34,8 @@ struct multipart_replace_stream {
long framecount;
};
-void multipart_replace_reader(struct multipart_replace_stream *s, int fd, const char *boundary);
-void multipart_replace_writer(struct multipart_replace_stream *s, int fd, const char *boundary);
+int multipart_replace_reader(struct multipart_replace_stream *s, int fd, const char *boundary);
+int multipart_replace_writer(struct multipart_replace_stream *s, int fd, const char *boundary);
void init_multipart_replace_stream(struct multipart_replace_stream *s);
void destroy_multipart_replace_stream(struct multipart_replace_stream *s);