diff options
author | Johnathan Corgan | 2013-05-12 11:25:35 +1000 |
---|---|---|
committer | Johnathan Corgan | 2013-05-12 11:25:35 +1000 |
commit | 6681c27c4bf6bb648684e4d716983a556ad860e8 (patch) | |
tree | ba8a5f0221c9ce8dfb71ff074ef5c8dd82a51032 | |
parent | 00796f668331ee9d4d00817dbe224b57be164d1a (diff) | |
download | gnuradio-6681c27c4bf6bb648684e4d716983a556ad860e8.tar.gz gnuradio-6681c27c4bf6bb648684e4d716983a556ad860e8.tar.bz2 gnuradio-6681c27c4bf6bb648684e4d716983a556ad860e8.zip |
utils: fix modtool template output signature
-rw-r--r-- | gr-utils/src/python/modtool/templates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/src/python/modtool/templates.py b/gr-utils/src/python/modtool/templates.py index 58617336e..d7cfffd06 100644 --- a/gr-utils/src/python/modtool/templates.py +++ b/gr-utils/src/python/modtool/templates.py @@ -136,7 +136,7 @@ namespace gr { #if $blocktype == 'sink' #set $outputsig = '0, 0, 0' #else -#set $outputsig = '<+MIN_IN+>, <+MAX_IN+>, sizeof (<+float+>)' +#set $outputsig = '<+MIN_OUT+>, <+MAX_OUT+>, sizeof (<+float+>)' #end if /* * The private constructor |