summaryrefslogtreecommitdiff
path: root/strbuf.c
diff options
context:
space:
mode:
authorLukas Sandström <lukass@etek.chalmers.se>2008-07-13 20:28:24 +0200
committerJunio C Hamano <gitster@pobox.com>2008-07-13 13:59:34 -0700
commit9b200fd68c799868c5c1383ef3eb34de7027f467 (patch)
tree4aae54f572f11f39ed0efef31ec391fd8ce94bf8 /strbuf.c
parenta9a3e82e6d0018ff42ec11fd9560c1ff47add824 (diff)
downloadgit-9b200fd68c799868c5c1383ef3eb34de7027f467.tar.gz
Make some strbuf_*() struct strbuf arguments const.
Signed-off-by: Lukas Sandström <lukass@etek.chalmers.se> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strbuf.c')
-rw-r--r--strbuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strbuf.c b/strbuf.c
index 4aed75265e..7767170db3 100644
--- a/strbuf.c
+++ b/strbuf.c
@@ -67,7 +67,7 @@ void strbuf_rtrim(struct strbuf *sb)
sb->buf[sb->len] = '\0';
}
-int strbuf_cmp(struct strbuf *a, struct strbuf *b)
+int strbuf_cmp(const struct strbuf *a, const struct strbuf *b)
{
int cmp;
if (a->len < b->len) {