From c6c63d954d4b00ae2b0821010fa35340340e2f21 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 11 Jan 2007 16:07:30 +0000 Subject: [PATCH] Rename "image" field to "data", because "image->image" is just confusing. --- src/include/gpxe/image.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/gpxe/image.h b/src/include/gpxe/image.h index cf6b7a88..6bb6b012 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;