struct operand_ *o = i->operands;
if (opt_.verbose > 2) {
- printf("%s: assembling %p ", __func__, i);
+ printf("%s: assembling %p ", __func__, (void *)i);
instruction_print_(i, 1);
printf("(line %zu)\n", i->src_line);
}
char *x;
unsigned long l;
- DEBUG_PRINTF("DAT operand:'%s' next:%p\n", o->operand, o->next);
+ DEBUG_PRINTF("DAT operand:'%s' next:%p\n", o->operand, (void *)o->next);
/* is this a string? */
/* does it start with a quote, and end with the same quote? */
/* cells are rendered from cell map, which is bitmap of two words, defining four eight-bit columns */
struct pixel_ {
- char r;
- char g;
- char b;
+ unsigned char r;
+ unsigned char g;
+ unsigned char b;
};
/* buf will hold image file in memory */