From b9a924c3d3014e4b8e966bc7672da55b95847673 Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Fri, 14 Sep 2007 14:42:29 +0000 Subject: [PATCH] Fixing a typo in the coding guidelines (closes issue #10717, reported and patched by leedm777) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@82376 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- doc/CODING-GUIDELINES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/CODING-GUIDELINES b/doc/CODING-GUIDELINES index c0aa5ed91a..c3ffacd3c5 100644 --- a/doc/CODING-GUIDELINES +++ b/doc/CODING-GUIDELINES @@ -229,7 +229,7 @@ benefit in this: struct foo { int bar; }; -typedef foo_t struct foo; +typedef struct foo foo_t; In fact, don't use 'variable type' suffixes at all; it's much preferable to just type 'struct foo' rather than 'foo_s'.