Opened 18 years ago

Closed 18 years ago

#521 closed patch (fixed)

Debug info typos

Reported by: Paul Vriens Owned by: Isaac Richards
Priority: trivial Milestone: unknown
Component: mythtv Version: head
Severity: low Keywords:
Cc: Ticket locked: no

Description

Hi,

while running mythbackend -v all I saw some messages:

VIDOCGMBUF:: Invalid argument

This should of course have been:

VIDIOCGMBUF:: Invalid argument

Trivial patch:

Index: libs/libmythtv/NuppelVideoRecorder.cpp
===================================================================
--- libs/libmythtv/NuppelVideoRecorder.cpp      (revision 7567)
+++ libs/libmythtv/NuppelVideoRecorder.cpp      (working copy)
@@ -1091,7 +1091,7 @@

     if (ioctl(fd, VIDIOCGMBUF, &vm) < 0)
     {
-        perror("VIDOCGMBUF:");
+        perror("VIDIOCGMBUF:");
         KillChildren();
         errored = true;
         return;

Cheers,

Paul.

Change History (2)

comment:1 Changed 18 years ago by anonymous

Version: head

comment:2 Changed 18 years ago by Robert Kulagowski

Resolution: fixed
Status: newclosed

(In [7568]) Spelling patch from Paul Vriens.

Closes #521.

Note: See TracTickets for help on using tickets.