From a008dcf99df43d756c77704ad0b53b2e6c6547ce Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Thu, 12 Nov 2020 14:56:55 -0500 Subject: [PATCH] Fix typo: quierying -> querying This fixes a small typo in a log message from 'quierying' to 'querying'. --- src/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device.c b/src/device.c index 615b45f..0d3cc0b 100644 --- a/src/device.c +++ b/src/device.c @@ -537,7 +537,7 @@ static void _device_open_hw_fps(struct device_t *dev) { LOG_DEBUG("Calling ioctl(VIDIOC_G_PARM) ..."); if (xioctl(dev->run->fd, VIDIOC_G_PARM, &setfps) < 0) { if (errno == ENOTTY) { // Quiet message for Auvidea B101 - LOG_INFO("Quierying HW FPS changing is not supported"); + LOG_INFO("Querying HW FPS changing is not supported"); } else { LOG_PERROR("Unable to query HW FPS changing"); }