struct scan_field_s -> struct scan_field

Remove obsolete suffix from struct scan_field.  Somehow, these
definitions did not get updated but did not cause any errors.
This commit is contained in:
Zachary T Welch
2009-11-14 06:30:02 -08:00
parent c2edc7908f
commit 4d4b2958a5
4 changed files with 27 additions and 27 deletions

View File

@@ -90,8 +90,8 @@ int str_to_buf(const char *str, int len,
uint8_t *bin_buf, int buf_size, int radix);
char* buf_to_str(const uint8_t *buf, int size, int radix);
struct scan_field_s;
int buf_to_u32_handler(uint8_t *in_buf, void *priv, struct scan_field_s *field);
struct scan_field;
int buf_to_u32_handler(uint8_t *in_buf, void *priv, struct scan_field *field);
#define CEIL(m, n) (((m) + (n) - 1) / (n))