summaryrefslogtreecommitdiffstats
path: root/src/include/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/image.h')
-rw-r--r--src/include/image.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/image.h b/src/include/image.h
index 3483fe095..b86f324ca 100644
--- a/src/include/image.h
+++ b/src/include/image.h
@@ -13,10 +13,10 @@ struct image {
int ( * boot ) ( void *context );
};
-#define __image_start __table_start(image)
-#define __image __table(image,01)
-#define __default_image __table(image,02)
-#define __image_end __table_end(image)
+#define __image_start __table_start ( struct image, image )
+#define __image __table ( struct image, image, 01 )
+#define __default_image __table ( struct image, image, 02 )
+#define __image_end __table_end ( struct image, image )
/* Functions in image.c */