summaryrefslogtreecommitdiff
path: root/decode.h
diff options
context:
space:
mode:
authorMikhail Burakov <mburakov@mailbox.org>2023-04-02 20:41:20 +0200
committerMikhail Burakov <mburakov@mailbox.org>2023-04-07 13:48:02 +0200
commit20ed57016563c10157093ed3785f17b5ce27fdca (patch)
tree73346b7a4b0ce66bf1d4b651f714fb1a315d247f /decode.h
parente59239d9eb7a48844104b2fbbcb96c069204950a (diff)
Major rework of decoder implementation
Diffstat (limited to 'decode.h')
-rw-r--r--decode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/decode.h b/decode.h
index b31b782..61f8203 100644
--- a/decode.h
+++ b/decode.h
@@ -27,6 +27,6 @@ struct Window;
struct DecodeContext* DecodeContextCreate(struct Window* window);
bool DecodeContextDecode(struct DecodeContext* decode_context, int fd);
-void DecodeContextDestroy(struct DecodeContext** decode_context);
+void DecodeContextDestroy(struct DecodeContext* decode_context);
#endif // RECEIVER_DECODE_H_