Fix some grammatical errors

This commit is contained in:
Cameron Gutman 2022-09-23 21:30:22 -05:00
parent 9de64d25b9
commit 60c4b514af
2 changed files with 3 additions and 3 deletions

View File

@ -276,7 +276,7 @@ int main(int argc, char* argv[]) {
config_file_parse(host_config_file, &config);
SERVER_DATA server;
printf("Connect to %s...\n", config.address);
printf("Connecting to %s...\n", config.address);
int ret;
if ((ret = gs_init(&server, config.address, config.key_dir, config.debug_level, config.unsupported)) == GS_OUT_OF_MEMORY) {
@ -345,7 +345,7 @@ int main(int argc, char* argv[]) {
for (int i=0;i<config.inputsCount;i++) {
if (config.debug_level > 0)
printf("Add input %s...\n", config.inputs[i]);
printf("Adding input device %s...\n", config.inputs[i]);
evdev_create(config.inputs[i], mappings, config.debug_level > 0, config.rotate);
}

View File

@ -210,7 +210,7 @@ bool vpu_decode(PDECODE_UNIT decodeUnit) {
while (vpu_IsBusy()) {
if (loop_id > 50) {
vpu_SWReset(handle, 0);
fprintf(stderr, "VPU is too long busy\n");
fprintf(stderr, "VPU busy timeout expired\n");
exit(EXIT_FAILURE);
}
vpu_WaitForInt(100);