On Tue, Oct 07, 2008 at 01:04:39PM -0500, Murtuza wrote: > Hi Friends, > > I finally figured out what was wrong in my code. I inadvertently missed the > return statement in the general_work function. This one little mistake cost > me an entire week of struggle. Next time I will be more attentive towards > what I do.
Glad to hear you found the problem. The compiler was very likely reporting a warning about falling off the end of a non-void procedure. It's a good idea to make warning go away. Eric _______________________________________________ Discuss-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
