Changeset 41882 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Jun 22, 2012 10:58:47 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78735
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageBandwidthControl.cpp
r41842 r41882 82 82 return "Invalid limit specifier\n"; 83 83 } 84 if (*pLimit < =0)85 return "Limit must be positive\n";84 if (*pLimit < 0) 85 return "Limit cannot be negative\n"; 86 86 if (*pLimit > INT64_MAX / iMultiplier) 87 87 return "Limit is too big\n";
Note:
See TracChangeset
for help on using the changeset viewer.