Browse Source

Text fixes.

Georgi Chorbadzhiyski 9 years ago
parent
commit
4a0ab7f820
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      videohubctrl.c

+ 3
- 3
videohubctrl.c View File

233
 		if (data->device.needs_fw_update) {
233
 		if (data->device.needs_fw_update) {
234
 			die("Device reports that it needs firmware update.");
234
 			die("Device reports that it needs firmware update.");
235
 		}
235
 		}
236
-		die("Device reports that it's not present.");
236
+		die("Device reports that it is not present.");
237
 	}
237
 	}
238
 
238
 
239
 	if (data->device.num_video_inputs > ARRAY_SIZE(data->inputs))
239
 	if (data->device.num_video_inputs > ARRAY_SIZE(data->inputs))
240
-		die("The device supports %d inputs. Recompile the program with more MAX_INPUTS (currently %d)",
240
+		die("Device supports %d inputs. Recompile the program with more MAX_INPUTS (currently %d)",
241
 			data->device.num_video_inputs, MAX_INPUTS);
241
 			data->device.num_video_inputs, MAX_INPUTS);
242
 
242
 
243
 	if (data->device.num_video_outputs > ARRAY_SIZE(data->outputs))
243
 	if (data->device.num_video_outputs > ARRAY_SIZE(data->outputs))
244
-		die("The device supports %d outputs. Recompile the program with more MAX_OUTPUTS (currently %d)\n",
244
+		die("Device supports %d outputs. Recompile the program with more MAX_OUTPUTS (currently %d)\n",
245
 			data->device.num_video_outputs, MAX_OUTPUTS);
245
 			data->device.num_video_outputs, MAX_OUTPUTS);
246
 
246
 
247
 	if (num_parsed_cmds) {
247
 	if (num_parsed_cmds) {

Loading…
Cancel
Save