aboutsummaryrefslogtreecommitdiff
path: root/example/null.c
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2004-01-26 11:28:44 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2004-01-26 11:28:44 +0000
commit307242f21bf3ca7a0fb0f30da45b5956f47b0250 (patch)
tree746fbdb6e416dcba61f905c19be0c33c52de5939 /example/null.c
parente815c03771bfe19a12f9ff76639b28567942903c (diff)
fix
Diffstat (limited to 'example/null.c')
-rw-r--r--example/null.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/null.c b/example/null.c
index 91f2cda..f9ead78 100644
--- a/example/null.c
+++ b/example/null.c
@@ -23,7 +23,7 @@ static int null_getattr(const char *path, struct stat *stbuf)
stbuf->st_nlink = 1;
stbuf->st_uid = getuid();
stbuf->st_gid = getgid();
- stbuf->st_size = (1 << 30); /* 1G */
+ stbuf->st_size = (1ULL << 32); /* 4G */
stbuf->st_blocks = 0;
stbuf->st_atime = stbuf->st_mtime = stbuf->st_ctime = time(NULL);