fix warning

This commit is contained in:
roberto@sirius
2010-02-04 11:55:35 +01:00
parent f1fad65b43
commit 54f666f214
+2 -2
View File
@@ -888,13 +888,13 @@ int main(int argc, char *argv[], char *envp[]) {
#endif
#endif
if (uwsgi.test_module == NULL) {
fprintf(stderr,"*** Starting uWSGI (%llubit) on [%.*s] ***\n", (sizeof(void *))*8, 24, ctime( (const time_t *) &uwsgi.start_tv.tv_sec));
fprintf(stderr,"*** Starting uWSGI (%dbit) on [%.*s] ***\n", (int) (sizeof(void *))*8, 24, ctime( (const time_t *) &uwsgi.start_tv.tv_sec));
}
#ifndef UNBIT
#ifndef ROCK_SOLID
}
else {
fprintf(stderr,"*** Starting uWSGI (CGI mode) (%llubit) on [%.*s] ***\n", (sizeof(void *))*8, 24, ctime( (const time_t *) &uwsgi.start_tv.tv_sec));
fprintf(stderr,"*** Starting uWSGI (CGI mode) (%dbit) on [%.*s] ***\n", (int) (sizeof(void *))*8, 24, ctime( (const time_t *) &uwsgi.start_tv.tv_sec));
}
#endif
#endif