瀏覽代碼

Better error messages for open()

Martijn Braam 4 年之前
父節點
當前提交
c89aba22ac
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      io_pipeline.c

+ 2 - 2
io_pipeline.c

@@ -138,7 +138,7 @@ setup_camera(MPDeviceList **device_list, const struct mp_camera_config *config)
 
 		info->video_fd = open(dev_name, O_RDWR);
 		if (info->video_fd == -1) {
-			g_printerr("Could not open %s\n", dev_name);
+			g_printerr("Could not open %s: %s\n", dev_name, strerror(errno));
 			exit(EXIT_FAILURE);
 		}
 
@@ -179,7 +179,7 @@ setup_camera(MPDeviceList **device_list, const struct mp_camera_config *config)
 
 		info->fd = open(info->dev_fname, O_RDWR);
 		if (info->fd == -1) {
-			g_printerr("Could not open %s\n", info->dev_fname);
+			g_printerr("Could not open %s: %s\n", info->dev_fname, strerror(errno));
 			exit(EXIT_FAILURE);
 		}