> > I am running GNUMP3d 2.9.4 on a CentOS 3.5 linux system with > > Perl 5.8.0. > > When I run gnump3d-index, I get about 20 lines of the > > following warning: > > > > "Use of uninitialized value in numeric lt (<) at > > /usr/bin/gnump3d-index line 392." > > FWIW, I am having the same problem on Gentoo Linux with the latest Gnump3d. > I don't know the problem, but I'm glad to know it's not just me.
Looks like: next if ( $size < 1 ); should be changed to: next if ( $size && $size < 1 ); _______________________________________________ Gnump3d-users mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnump3d-users
