From: Michael Brown Date: Thu, 11 Jan 2007 16:07:30 +0000 (+0000) Subject: Rename "image" field to "data", because "image->image" is just confusing. X-Git-Tag: v0.9.3~690 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6c63d954d4b00ae2b0821010fa35340340e2f21;p=thirdparty%2Fipxe.git Rename "image" field to "data", because "image->image" is just confusing. --- 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;