[perl #119271] Faulty test for INT16 in Configure
authorH.Merijn Brand <h.m.brand@xs4all.nl>
Fri, 16 Aug 2013 12:23:20 +0000 (14:23 +0200)
committerH.Merijn Brand <h.m.brand@xs4all.nl>
Fri, 16 Aug 2013 12:23:20 +0000 (14:23 +0200)
commit190abcd875efa4196888e86034d274f97614cfc1
treed3bb42175e9ac827cee8ba30c39c2e8ebb731993
parent2f16b0fce6c97cae7080f88d138f4b6c6561f2e4
[perl #119271] Faulty test for INT16 in Configure

#ifdef INT16
   int16_t i =  INT16_MAX;
  uint16_t i = UINT16_MAX;
  printf("int16_t\n");
#endif

Declaring i twice is a typo; The second variable should be a 'u'.
Configure