From 307242f21bf3ca7a0fb0f30da45b5956f47b0250 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Mon, 26 Jan 2004 11:28:44 +0000 Subject: fix --- example/null.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example/null.c') 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); -- cgit v1.2.3