We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From manuel.c...@gmail.com on March 20, 2007 05:21:22
replace in line 81
tv_usec=int((int(ts) - float(ts)) * 1000000.0)
with
tv_usec=int((float(ts) - int(ts)) * 1000000.0)
tnx Manuel.
Original issue: http://code.google.com/p/dpkt/issues/detail?id=3
The text was updated successfully, but these errors were encountered:
From dugsong on March 20, 2007 02:32:51
this is already fixed in the current version of dpkt in Subversion. i will cut a new release soon that incorporates it.
thank you for the bug report!
Status: Fixed
Sorry, something went wrong.
No branches or pull requests
From manuel.c...@gmail.com on March 20, 2007 05:21:22
replace in line 81
tv_usec=int((int(ts) - float(ts)) * 1000000.0)
with
tv_usec=int((float(ts) - int(ts)) * 1000000.0)
tnx
Manuel.
Original issue: http://code.google.com/p/dpkt/issues/detail?id=3
The text was updated successfully, but these errors were encountered: