comparison libnnchat.c @ 167:b0b63d164702

Remove useless parens.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 06 Nov 2010 18:00:22 +0200
parents 701c54a45466
children 2e4850ece456
comparison
equal deleted inserted replaced
166:8bb12c22fe05 167:b0b63d164702
15 static const html_entity_t HTMLEntities[] = { 15 static const html_entity_t HTMLEntities[] = {
16 { '<', "&lt;" }, 16 { '<', "&lt;" },
17 { '>', "&gt;" }, 17 { '>', "&gt;" },
18 }; 18 };
19 19
20 static const int numHTMLEntities = (sizeof(HTMLEntities) / sizeof(HTMLEntities[0])); 20 static const int numHTMLEntities = sizeof(HTMLEntities) / sizeof(HTMLEntities[0]);
21 21
22 22
23 #ifdef __WIN32 23 #ifdef __WIN32
24 const char *hstrerror(int err) 24 const char *hstrerror(int err)
25 { 25 {