Rename hb-blob.c to hb-blob.cc in preparation of more changes
This commit is contained in:
parent
04744e73ba
commit
f19f4f9b09
@ -11,7 +11,7 @@ lib_LTLIBRARIES = libharfbuzz.la
|
|||||||
HBCFLAGS =
|
HBCFLAGS =
|
||||||
HBLIBS =
|
HBLIBS =
|
||||||
HBSOURCES = \
|
HBSOURCES = \
|
||||||
hb-blob.c \
|
hb-blob.cc \
|
||||||
hb-blob-private.h \
|
hb-blob-private.h \
|
||||||
hb-buffer.cc \
|
hb-buffer.cc \
|
||||||
hb-buffer-private.hh \
|
hb-buffer-private.hh \
|
||||||
|
@ -331,7 +331,7 @@ hb_blob_try_writable (hb_blob_t *blob)
|
|||||||
if (blob->lock_count)
|
if (blob->lock_count)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
new_data = malloc (blob->length);
|
new_data = (char *) malloc (blob->length);
|
||||||
if (new_data) {
|
if (new_data) {
|
||||||
(void) (HB_DEBUG_BLOB &&
|
(void) (HB_DEBUG_BLOB &&
|
||||||
fprintf (stderr, "%p %s: dupped successfully -> %p\n", blob, __FUNCTION__, blob->data));
|
fprintf (stderr, "%p %s: dupped successfully -> %p\n", blob, __FUNCTION__, blob->data));
|
Loading…
Reference in New Issue
Block a user