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
This commit is contained in:
Mark Michelson
2007-09-14 14:42:29 +00:00
parent 903fba1b1d
commit b9a924c3d3

View File

@@ -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'.