in reply to Re: Win32 TCP SYN messages
in thread Win32 TCP SYN messages
my $helpDec = sprintf("%d", 19);
is the same as
my $helpDec = "19";
but you don't even want a string, so you want
my $helpDec = 19;
If you're trying to remove fractional components, use
my $helpDec = int(19);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Win32 TCP SYN messages
by Mr. Muskrat (Canon) on Jun 21, 2006 at 13:50 UTC | |
by ikegami (Patriarch) on Jun 21, 2006 at 15:09 UTC |