X-Git-Url: http://git.samba.org/?p=samba.git;a=blobdiff_plain;f=source%2Finclude%2Ftalloc.h;h=ffb4c9f2528030c2ce375c8fb4286fcddd7b9864;hp=18c31c693532a847aa4387a00291e8cc1d568009;hb=ad84e3b2e3b48406576a8ba2ebfd218cddae135d;hpb=1f01e370b192fc8fa51eb3a46e7b45c993aa9b80 diff --git a/source/include/talloc.h b/source/include/talloc.h index 18c31c69353..ffb4c9f2528 100644 --- a/source/include/talloc.h +++ b/source/include/talloc.h @@ -49,8 +49,8 @@ typedef void TALLOC_CTX; #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count) #define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count) -#define data_blob(ptr, size) data_blob_named(ptr, size, __location__) -#define data_blob_talloc(ctx, ptr, size) data_blob_talloc_named(ctx, ptr, size, __location__) +#define data_blob(ptr, size) data_blob_named(ptr, size, "DATA_BLOB: "__location__) +#define data_blob_talloc(ctx, ptr, size) data_blob_talloc_named(ctx, ptr, size, "DATA_BLOB: "__location__) #ifndef PRINTF_ATTRIBUTE #define PRINTF_ATTRIBUTE(a1, a2)