Skip to content

Commit

Permalink
Fix value box foreach macro
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Jan 25, 2018
1 parent 4f2c858 commit 4cce828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/value.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ typedef struct value_box fr_value_box_t;
extern size_t const fr_value_box_field_sizes[];
extern size_t const fr_value_box_offsets[];

#define fr_value_box_foreach(_v, _iv) for (fr_value_box_t *_iv = v; _iv; _iv = _iv->next)
#define fr_value_box_foreach(_v, _iv) for (fr_value_box_t *_iv = _v; _iv; _iv = _iv->next)

/** Union containing all data types supported by the server
*
Expand Down

0 comments on commit 4cce828

Please sign in to comment.