Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
a77aedb7
Commit
a77aedb7
authored
Sep 05, 2006
by
Robert Ricci
Browse files
Minor bug fix - change a few debugging outputs to print unsigned ints
rather than signed ones.
parent
417094e2
Changes
1
Show whitespace changes
Inline
Side-by-side
pelab/magent/PacketSensor.cc
View file @
a77aedb7
...
...
@@ -107,8 +107,8 @@ void PacketSensor::localSend(PacketInfo * packet)
*/
if
(
record
.
seqStart
!=
(
globalSequence
.
seqEnd
+
1
))
{
logWrite
(
EXCEPTION
,
"PacketSensor::localSend() may have missed a "
"packet - last seq seen: %
d
, new seq: %
d
(lost %d)"
,
fprintf
(
stderr
,
"PacketSensor::localSend() may have missed a "
"packet - last seq seen: %
u
, new seq: %
u
(lost %d)"
,
globalSequence
.
seqEnd
,
record
.
seqStart
,
record
.
seqStart
-
globalSequence
.
seqEnd
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment