From: Russell Bryant Date: Wed, 11 Jan 2006 00:06:15 +0000 (+0000) Subject: fix typo, thanks Qwell! X-Git-Tag: 1.4.0-beta1~3006 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79aa72e2e7acbb96f3129d9eb4d931fe5b21cee4;p=thirdparty%2Fasterisk.git fix typo, thanks Qwell! git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7953 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/doc/CODING-GUIDELINES b/doc/CODING-GUIDELINES index 42d54aceb6..7e4679be72 100644 --- a/doc/CODING-GUIDELINES +++ b/doc/CODING-GUIDELINES @@ -384,7 +384,7 @@ in having code like this: However, the ast_strdup and ast_strdup functions will happily accept a NULL argument without generating an error. The same code can be written as: - newstr = strdup(str); + newstr = ast_strdup(str); * CLI Commands