kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit df6ebe3568692f760cd7c19a92b4780822df0e8f
parent a9ebf37caec3a3e2c644c62184f42553bf080136
Author: Joris Vink <joris@coders.se>
Date:   Wed,  1 May 2013 21:25:08 +0200

u_int32_t to time_t for last mstamp

Diffstat:
example/tools/html_inject.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/example/tools/html_inject.c b/example/tools/html_inject.c @@ -76,7 +76,7 @@ main(int argc, char *argv[]) fprintf(hdr, "extern u_int8_t *static_%s_%s;\n", ext, argv[2]); fprintf(hdr, "extern u_int32_t static_len_%s_%s;\n", ext, argv[2]); - fprintf(hdr, "extern u_int32_t static_mtime_%s_%s;\n", ext, argv[2]); + fprintf(hdr, "extern time_t static_mtime_%s_%s;\n", ext, argv[2]); fclose(hdr); return (0);