aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-14 14:42:29 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-14 14:42:29 +0000
commiteb84605afa03401d6cd92501b72e9b1112fd3247 (patch)
tree581cd6e8443ce57738e945b82cb1a87c4c64de7f
parentb367c01560814a903b9f405122e202e19610d9b8 (diff)
Fixing a typo in the coding guidelines
(closes issue #10717, reported and patched by leedm777) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@82376 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--doc/CODING-GUIDELINES2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/CODING-GUIDELINES b/doc/CODING-GUIDELINES
index c0aa5ed91..c3ffacd3c 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'.