aboutsummaryrefslogtreecommitdiff
path: root/include/file.h
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2023-04-11 12:32:38 -0400
committerShav Kinderlehrer <[email protected]>2023-04-11 12:32:38 -0400
commitda0287ec63b2eeda4adeebc9f2bc13e4ebc82eaa (patch)
tree86a1f7c10d21065f08d9845198c66ccd04d9966a /include/file.h
parent41487c8ae6285b406150a4f6784dd0e3e33d54b3 (diff)
downloadlat-da0287ec63b2eeda4adeebc9f2bc13e4ebc82eaa.tar.gz
lat-da0287ec63b2eeda4adeebc9f2bc13e4ebc82eaa.zip
Move to size_t where practical
Diffstat (limited to 'include/file.h')
-rw-r--r--include/file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/file.h b/include/file.h
index 0d2e791..9758fad 100644
--- a/include/file.h
+++ b/include/file.h
@@ -4,7 +4,7 @@
#define FILE_H
struct filedata {
int lc;
- unsigned len;
+ size_t len;
char *buf;
};