diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-09-04 07:32:03 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-09-04 07:35:36 -0300 |
commit | 3eaae224ff99deede69c20118cf2330b481f41f5 (patch) | |
tree | 1b81270e3eebbce9d1c0ec9d3f95056fbcddec9d /src/v4l.c | |
parent | 1a3586db89e70a8ee68efc4a65110dde71c087f1 (diff) |
Don't use gdk-pixbuf-xlib-2.0 anymore
Since we moved to Cairo, this is not needed.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'src/v4l.c')
-rw-r--r-- | src/v4l.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ void print_cam(cam_t *cam){ printf("\nCamera Info\n"); printf("-----------\n"); printf("device = %s, x = %d, y = %d\n",cam->video_dev, cam->width,cam->height); - printf("bits per pixel = %d, desk_depth = %d\n", cam->bpp, cam->desk_depth); + printf("bits per pixel = %d\n", cam->bpp); if(cam->width <= 0 || cam->height <= 0) { switch (cam->size) { case PICMAX: |