Changeset ded859826a394a1db4553d2a3662b8917985108a
- Timestamp:
- 12/27/11 22:06:18
(1 year ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1325023578 -0500
- git-parent:
[460030f4cc773badae850c94b1b4b5f6a8cd3093]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1325023578 -0500
- Message:
double submit due to missing break in switch statement
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9d3260a |
rded8598 |
|
| 282 | 282 | break; |
|---|
| 283 | 283 | case json_type_int: { |
|---|
| 284 | | if(!key || !*key) break; |
|---|
| 285 | | int32_t value = json_object_get_int(o); |
|---|
| 286 | | setstat(key, METRIC_INT32, &value); |
|---|
| 287 | | } |
|---|
| | 284 | if(!key || !*key) break; |
|---|
| | 285 | int32_t value = json_object_get_int(o); |
|---|
| | 286 | setstat(key, METRIC_INT32, &value); |
|---|
| | 287 | } |
|---|
| | 288 | break; |
|---|
| 288 | 289 | case json_type_string: { |
|---|
| 289 | 290 | if(!key || !*key) break; |
|---|