Rename hb-blob.c to hb-blob.cc in preparation of more changes

This commit is contained in:
Behdad Esfahbod 2011-04-20 18:25:56 -04:00
parent 04744e73ba
commit f19f4f9b09
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ lib_LTLIBRARIES = libharfbuzz.la
HBCFLAGS =
HBLIBS =
HBSOURCES = \
hb-blob.c \
hb-blob.cc \
hb-blob-private.h \
hb-buffer.cc \
hb-buffer-private.hh \

View File

@ -331,7 +331,7 @@ hb_blob_try_writable (hb_blob_t *blob)
if (blob->lock_count)
goto done;
new_data = malloc (blob->length);
new_data = (char *) malloc (blob->length);
if (new_data) {
(void) (HB_DEBUG_BLOB &&
fprintf (stderr, "%p %s: dupped successfully -> %p\n", blob, __FUNCTION__, blob->data));