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
Potentially overflowing expression "1048576 * S" with type "int" (32 bits, signed) is evaluated using 32-bit arithmetic, and then used in a context that expects an expression of type "uint64_t" (64 bits, unsigned).
ros_comm/tools/rosbag/src/record.cpp
Line 129 in 29053c4
To avoid overflow, cast either "1048576" or "S" to type "uint64_t".
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Potentially overflowing expression "1048576 * S" with type "int" (32 bits, signed) is evaluated using 32-bit arithmetic, and then used in a context that expects an expression of type "uint64_t" (64 bits, unsigned).
ros_comm/tools/rosbag/src/record.cpp
Line 129 in 29053c4
To avoid overflow, cast either "1048576" or "S" to type "uint64_t".
The text was updated successfully, but these errors were encountered: