diff options
Diffstat (limited to 'WWW/Library/Implementation/HTChunk.h')
-rw-r--r-- | WWW/Library/Implementation/HTChunk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WWW/Library/Implementation/HTChunk.h b/WWW/Library/Implementation/HTChunk.h index 8c593bca..ba28c422 100644 --- a/WWW/Library/Implementation/HTChunk.h +++ b/WWW/Library/Implementation/HTChunk.h @@ -20,7 +20,7 @@ typedef struct { int size; /* In bytes */ int growby; /* Allocation unit in bytes */ int allocated; /* Current size of *data */ - char *data; /* Pointer to malloced area or 0 */ + char *data; /* Pointer to malloc'd area or 0 */ int failok; /* allowed to fail without exiting program? */ } HTChunk; |