comparison src/os/win32/ngx_errno.c @ 4693:f1a0de6eb505

Fixed return type of ngx_strerror_init().
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 18 Jun 2012 14:12:03 +0000
parents d620f497c50f
children 746567d633ac
comparison
equal deleted inserted replaced
4692:489839d07b38 4693:f1a0de6eb505
51 51
52 return &errstr[++len]; 52 return &errstr[++len];
53 } 53 }
54 54
55 55
56 ngx_uint_t 56 ngx_int_t
57 ngx_strerror_init(void) 57 ngx_strerror_init(void)
58 { 58 {
59 return NGX_OK; 59 return NGX_OK;
60 } 60 }