libtriple: remove absolute file names

This commit is contained in:
Stefan Seyfried
2015-02-22 12:33:20 +01:00
parent f5e9cceb64
commit efb860f20d
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ int gfxfd = -1;
#define DFBCHECK(x...) \ #define DFBCHECK(x...) \
err = x; \ err = x; \
if (err != DFB_OK) { \ if (err != DFB_OK) { \
fprintf(stderr, "%s <%d>:\n\t", __FILE__, __LINE__ ); \ fprintf(stderr, "init_td.cpp:%d:\n\t", __LINE__); \
DirectFBErrorFatal(#x, err ); \ DirectFBErrorFatal(#x, err ); \
} }

View File

@@ -58,7 +58,7 @@ extern VDec *_vdec;
#define DFBCHECK(x...) \ #define DFBCHECK(x...) \
err = x; \ err = x; \
if (err != DFB_OK) { \ if (err != DFB_OK) { \
fprintf(stderr, "%s <%d>:\n\t", __FILE__, __LINE__ ); \ fprintf(stderr, "lt_dfbinput.cpp:%d:\n\t", __LINE__); \
DirectFBErrorFatal(#x, err ); \ DirectFBErrorFatal(#x, err ); \
} }