Skip to content

Commit

Permalink
pkt-line: fix declaration of set_packet_header()
Browse files Browse the repository at this point in the history
When this function was changed in a97d007 (remote-curl: use
post_rpc() for protocol v2 also, 2019-02-21) from file-local to global,
the declaration was incorrectly missing the `const` qualifier.

Let's fix that.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed May 14, 2019
1 parent 5818860 commit e488603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkt-line.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void packet_delim(int fd);
void packet_write_fmt(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
void packet_buf_flush(struct strbuf *buf);
void packet_buf_delim(struct strbuf *buf);
void set_packet_header(char *buf, int size);
void set_packet_header(char *buf, const int size);
void packet_write(int fd_out, const char *buf, size_t size);
void packet_buf_write(struct strbuf *buf, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
void packet_buf_write_len(struct strbuf *buf, const char *data, size_t len);
Expand Down

0 comments on commit e488603

Please sign in to comment.