From: Jeff Peeler Date: Wed, 29 Apr 2009 22:56:55 +0000 (+0000) Subject: fix typos X-Git-Tag: 11.0.0-beta1~4971 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c675733e6cac9199ec28fe32431add8fd670d396;p=thirdparty%2Fasterisk.git fix typos git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@191213 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_phoneprov.c b/res/res_phoneprov.c index a444c491d8..da22721b3b 100644 --- a/res/res_phoneprov.c +++ b/res/res_phoneprov.c @@ -1102,7 +1102,7 @@ static int pp_each_user_read(struct ast_channel *chan, const char *cmd, char *da return pp_each_user_helper(chan, data, buf, NULL, len); } -static int pp_each_user_read2(struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, int len) +static int pp_each_user_read2(struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, ssize_t len) { return pp_each_user_helper(chan, data, NULL, buf, len); } @@ -1188,7 +1188,7 @@ static int pp_each_extension_read(struct ast_channel *chan, const char *cmd, cha return pp_each_extension_helper(chan, cmd, data, buf, NULL, len); } -static int pp_each_extension_read2(struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, int len) +static int pp_each_extension_read2(struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, ssize_t len) { return pp_each_extension_helper(chan, cmd, data, NULL, buf, len); }