From c27f813900a3c114562efbb8df1065e94766fc48 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Tue, 10 Feb 2009 15:43:59 -0800 Subject: auto import from //branches/cupcake/...@130745 --- cbuffer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cbuffer.c') diff --git a/cbuffer.c b/cbuffer.c index 082b0dd..0e99237 100644 --- a/cbuffer.c +++ b/cbuffer.c @@ -10,7 +10,7 @@ ** GNU General Public License for more details. */ #include "cbuffer.h" -#include "android_utils.h" +#include "android/utils/stralloc.h" #include #include #include @@ -188,7 +188,7 @@ cbuffer_quote( CBuffer* cb ) stralloc_format( s, "cbuffer %p (pos=%d count=%d size=%d)", cb, cb->rpos, cb->count, cb->size ); - q = tempstr_from_stralloc( s ); + q = stralloc_to_tempstr( s ); stralloc_reset(s); return q; @@ -216,7 +216,7 @@ cbuffer_quote_data( CBuffer* cb ) len -= avail; } - result = tempstr_from_stralloc(s); + result = stralloc_to_tempstr(s); stralloc_reset(s); return result; -- cgit v1.1