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
1.4
Mark Michelson 19 years ago
parent 903fba1b1d
commit b9a924c3d3

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

Loading…
Cancel
Save