diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-03-11 13:31:50 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-03-11 13:31:50 +0100 |
commit | d5da0fc0d43b722cb5de853c6aca6c443aafa6b9 (patch) | |
tree | 628178499611e2da1676133aa062e45bd0f9db5f | |
parent | a0628d715e023020d94d6fcca5e091aa26acf619 (diff) | |
download | blogc-d5da0fc0d43b722cb5de853c6aca6c443aafa6b9.tar.gz blogc-d5da0fc0d43b722cb5de853c6aca6c443aafa6b9.tar.bz2 blogc-d5da0fc0d43b722cb5de853c6aca6c443aafa6b9.zip |
make: typo
-rw-r--r-- | src/blogc-make/ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blogc-make/ctx.c b/src/blogc-make/ctx.c index de92fcf..74932c9 100644 --- a/src/blogc-make/ctx.c +++ b/src/blogc-make/ctx.c @@ -49,7 +49,7 @@ bm_filectx_new(bm_ctx_t *ctx, const char *filename, struct stat *st) st = &buf; } - // if st isn't NULL the file exists for sure + // if it isn't NULL the file exists for sure rv->tv_sec = st->st_mtim_tv_sec; rv->tv_nsec = st->st_mtim_tv_nsec; rv->readable = true; |