summaryrefslogtreecommitdiff
path: root/gr-fec
diff options
context:
space:
mode:
authortracierenea <tracie.perez@mavs.uta.edu>2016-03-23 16:09:13 -0500
committerJohnathan Corgan <johnathan@corganlabs.com>2016-03-27 06:21:59 -0700
commit4ab650a4414c6b8e91a2680c105e834b44d8a347 (patch)
tree6f97843633c2c5b363610aa994cb4e111a0e1202 /gr-fec
parent65d52f79c13db74d5244f0f3dc76489d1942199b (diff)
gr-fec: Address make error when parallelism = 1 or 2.
GRC was calling the wrong make function for the case when parallelism was set to 1 or 2. I think this is just a hold over oops from when we were renaming these classes prior to pull request #660.
Diffstat (limited to 'gr-fec')
-rw-r--r--gr-fec/grc/variable_ldpc_encoder_G.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-fec/grc/variable_ldpc_encoder_G.xml b/gr-fec/grc/variable_ldpc_encoder_G.xml
index d138fa37bd..3b4dbeee25 100644
--- a/gr-fec/grc/variable_ldpc_encoder_G.xml
+++ b/gr-fec/grc/variable_ldpc_encoder_G.xml
@@ -13,9 +13,9 @@
#if int($ndim())==0 #
self.$(id) = $(id) = fec.ldpc_gen_mtrx_encoder_make($G)
#else if int($ndim())==1 #
-self.$(id) = $(id) = map((lambda a: fec.ldpc_encoder_make($G)), range(0,$dim1)) #slurp
+self.$(id) = $(id) = map((lambda a: fec.ldpc_gen_mtrx_encoder_make($G)), range(0,$dim1)) #slurp
#else
-self.$(id) = $(id) = map((lambda b: map((lambda a: fec.ldpc_encoder_make($G)), range(0,$dim2))), range(0,$dim1)) #slurp
+self.$(id) = $(id) = map((lambda b: map((lambda a: fec.ldpc_gen_mtrx_encoder_make($G)), range(0,$dim2))), range(0,$dim1)) #slurp
#end if</var_make>
<make></make>