summaryrefslogtreecommitdiff
path: root/sw/inc/poolfmt.awk
diff options
context:
space:
mode:
Diffstat (limited to 'sw/inc/poolfmt.awk')
-rw-r--r--sw/inc/poolfmt.awk6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/poolfmt.awk b/sw/inc/poolfmt.awk
index 3c196fc8fe2d..58f758c94640 100644
--- a/sw/inc/poolfmt.awk
+++ b/sw/inc/poolfmt.awk
@@ -40,7 +40,7 @@ function Main() {
print
print "void main( int , char *[] ) {"
sStr = "#define"
- print " int nSize = (sizeof(ppPoolIds) / sizeof(PoolFmtIds)) - 1;"
+ print " int nSize = (sizeof(ppPoolIds) / sizeof(PoolFormatIds)) - 1;"
print " for( int n = 0; n < nSize; n++ )"
print " printf( \"" sStr " %s\\t%8d\\n\", ppPoolIds[ n ].pStr, ppPoolIds[ n ].nId );"
print "}"
@@ -48,8 +48,8 @@ function Main() {
function TableHead() {
print
- print "struct PoolFmtIds { int nId; const char* pStr; };"
- print "static PoolFmtIds ppPoolIds[] = {"
+ print "struct PoolFormatIds { int nId; const char* pStr; };"
+ print "static PoolFormatIds ppPoolIds[] = {"
}
function TableTail() {