X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fdevices%2Ftext.c;h=36c0e4f11d8c56175a0b4491c067780d0f20c912;hp=53f74d5114572f02385c47fd664fb4063d482abf;hb=b93de056e0b79f57c8f8fe22985b166c7d2c3dc3;hpb=a3eecab9e8f6a1b0b887f1bd082bd064f01ecffd diff --git a/lib/devices/text.c b/lib/devices/text.c index 53f74d5..36c0e4f 100644 --- a/lib/devices/text.c +++ b/lib/devices/text.c @@ -60,7 +60,7 @@ void text_startpage(gfxdevice_t*dev, int width, int height) i->current_page = i->current_page->next; } i->current_page->textsize = 4096; - i->current_page->text = malloc(i->current_page->textsize); + i->current_page->text = (char*)malloc(i->current_page->textsize); i->current_page->textpos = 0; i->current_page->next = 0; i->currentx = 0; @@ -133,7 +133,7 @@ void text_drawchar(gfxdevice_t*dev, gfxfont_t*font, int glyphnr, gfxcolor_t*colo } } -void text_drawlink(gfxdevice_t*dev, gfxline_t*line, char*action) +void text_drawlink(gfxdevice_t*dev, gfxline_t*line, const char*action) { internal_t*i = (internal_t*)dev->internal; } @@ -173,7 +173,7 @@ void*text_result_get(gfxresult_t*r, char*name) len += i->textpos; j = j->next; } - char*text = malloc(len); + char*text = (char*)malloc(len); int pos = 0; j = i; while(j) {