# HG changeset patch # User Yuya Nishihara # Date 2016-08-07 00:40:30 # Node ID 9a1685c70db44d988a638dc4e83d84129594f86c # Parent 21ac534d7d30e528aa224d383ca82cca50863cdd mpatch: change lalloc() to local function It was mistakenly made public at b9b9f9a92481. diff --git a/mercurial/mpatch.c b/mercurial/mpatch.c --- a/mercurial/mpatch.c +++ b/mercurial/mpatch.c @@ -30,7 +30,7 @@ char *mpatch_errors[] = {NULL, "invalid patch", "patch cannot be decoded", "no memory"}; -struct mpatch_flist *lalloc(ssize_t size) +static struct mpatch_flist *lalloc(ssize_t size) { struct mpatch_flist *a = NULL;