summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2007-01-11 17:07:30 +0100
committerMichael Brown2007-01-11 17:07:30 +0100
commitc6c63d954d4b00ae2b0821010fa35340340e2f21 (patch)
tree6b8f803d8355e51a76e46ba632c3eb944317749b
parentMove include/image.h to include/gpxe/image.h (diff)
downloadipxe-c6c63d954d4b00ae2b0821010fa35340340e2f21.tar.gz
ipxe-c6c63d954d4b00ae2b0821010fa35340340e2f21.tar.xz
ipxe-c6c63d954d4b00ae2b0821010fa35340340e2f21.zip
Rename "image" field to "data", because "image->image" is just confusing.
-rw-r--r--src/include/gpxe/image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/gpxe/image.h b/src/include/gpxe/image.h
index cf6b7a88f..6bb6b0124 100644
--- a/src/include/gpxe/image.h
+++ b/src/include/gpxe/image.h
@@ -13,7 +13,7 @@
/** An executable or loadable image */
struct image {
/** Raw file image */
- userptr_t image;
+ userptr_t data;
/** Length of raw file image */
size_t len;