summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-08-06 17:08:06 +0100
committerChristoph Brill <christoph.brill@chamaeleon.de>2011-12-13 22:15:48 +0100
commitdb79b42c96e056dc969a1f3beef29c91fa2d6b59 (patch)
treec07dc5e6cb1b774fc00268d3abe0416108ef9515
parentce5880646260c6332e82aa6b6075de518fe86735 (diff)
Remove debug
This just removes a couple of debug messages which are no longer needed.
-rw-r--r--glamo/glamo_bo_gem.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/glamo/glamo_bo_gem.c b/glamo/glamo_bo_gem.c
index 481481b7..048f477c 100644
--- a/glamo/glamo_bo_gem.c
+++ b/glamo/glamo_bo_gem.c
@@ -109,8 +109,6 @@ static struct glamo_bo *bo_open(struct glamo_bo_manager *bom,
struct glamo_bo_gem *bo;
int r;
- printf("bo_open, size=%i\n", size);fflush(stdout);
-
bo = (struct glamo_bo_gem*)calloc(1, sizeof(struct glamo_bo_gem));
if (bo == NULL) {
return NULL;
@@ -270,8 +268,6 @@ struct glamo_bo_manager *glamo_bo_manager_gem_ctor(int fd)
{
struct bo_manager_gem *bomg;
- printf("Creating a new glamo_bo_manager\n");fflush(stdout);
-
bomg = (struct bo_manager_gem*)calloc(1, sizeof(struct bo_manager_gem));
if (bomg == NULL) return NULL;