]> git.sur5r.net Git - openocd/blobdiff - src/target/image.h
breakpoints: fix error handling
[openocd] / src / target / image.h
index e963b3c10a32c817f09fdc25112a5aa719e9e5e4..b096031b02017ba10e0a9b7928ccb2374f129437 100644 (file)
@@ -62,7 +62,7 @@ struct image
        int num_sections;               /* number of sections contained in the image */
        struct imageection *sections;   /* array of sections */
        int base_address_set;   /* whether the image has a base address set (for relocation purposes) */
-       int base_address;               /* base address, if one is set */
+       long long base_address;         /* base address, if one is set */
        int start_address_set;  /* whether the image has a start address (entry point) associated */
        uint32_t start_address;         /* start address, if one is set */
 };