aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-08-06 17:08:06 +0100
committerThomas White <taw@bitwiz.org.uk>2010-05-23 09:51:34 +0200
commitd852c19efb9551ccfcf6fc330f9d816e8df359a8 (patch)
treeef39203209ac03b3ee8251dd7ff4b94ce3cc8762
parent60d2ef954d11b257f3fd818b3d7046975e2bde4e (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;