~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/make-conf.c

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
#define ROW_LEN   16
42
42
 
43
 
void print_array(const char *name, const unsigned char *array, uint size);
 
43
void print_array(const char *name, const unsigned char *array, uint32_t size);
44
44
 
45
45
int main(void)
46
46
{
56
56
  exit(EXIT_SUCCESS);
57
57
}
58
58
 
59
 
void print_array(const char *name, const unsigned char *array, uint size)
 
59
void print_array(const char *name, const unsigned char *array, uint32_t size)
60
60
{
61
 
  uint i;
 
61
  uint32_t i;
62
62
 
63
63
  printf("\n# The %s array must have %d elements.\n", name, size);
64
64