[asterisk-commits] mmichelson: branch 1.4 r82376 -	/branches/1.4/doc/CODING-GUIDELINES
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Fri Sep 14 09:42:30 CDT 2007
    
    
  
Author: mmichelson
Date: Fri Sep 14 09:42:29 2007
New Revision: 82376
URL: http://svn.digium.com/view/asterisk?view=rev&rev=82376
Log:
Fixing a typo in the coding guidelines
(closes issue #10717, reported and patched by leedm777)
Modified:
    branches/1.4/doc/CODING-GUIDELINES
Modified: branches/1.4/doc/CODING-GUIDELINES
URL: http://svn.digium.com/view/asterisk/branches/1.4/doc/CODING-GUIDELINES?view=diff&rev=82376&r1=82375&r2=82376
==============================================================================
--- branches/1.4/doc/CODING-GUIDELINES (original)
+++ branches/1.4/doc/CODING-GUIDELINES Fri Sep 14 09:42:29 2007
@@ -229,7 +229,7 @@
 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'.
    
    
More information about the asterisk-commits
mailing list