summaryrefslogtreecommitdiffstats
path: root/src/include/buffer.h
diff options
context:
space:
mode:
authorMichael Brown2005-05-17 16:34:46 +0200
committerMichael Brown2005-05-17 16:34:46 +0200
commit40c7b127aa6297f9daf5765692b60332926cca0a (patch)
treee1cce55e836d1be0fad28228df31b06615cf173d /src/include/buffer.h
parentUpdated to use buffer rather than processor (diff)
downloadipxe-40c7b127aa6297f9daf5765692b60332926cca0a.tar.gz
ipxe-40c7b127aa6297f9daf5765692b60332926cca0a.tar.xz
ipxe-40c7b127aa6297f9daf5765692b60332926cca0a.zip
Added const to fill_buffer
Diffstat (limited to 'src/include/buffer.h')
-rw-r--r--src/include/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/buffer.h b/src/include/buffer.h
index a22b00dd..0085c7d1 100644
--- a/src/include/buffer.h
+++ b/src/include/buffer.h
@@ -39,7 +39,7 @@ extern struct buffer load_buffer;
/* Functions in buffer.c */
extern void init_buffer ( struct buffer *buffer );
-extern int fill_buffer ( struct buffer *buffer, void *data,
+extern int fill_buffer ( struct buffer *buffer, const void *data,
off_t offset, size_t len );
#endif /* BUFFER_H */