demo/choose_clock: Fix a printf.
authorIan Abbott <abbotti@mev.co.uk>
Mon, 14 May 2012 13:45:37 +0000 (14:45 +0100)
committerIan Abbott <abbotti@mev.co.uk>
Mon, 14 May 2012 13:45:37 +0000 (14:45 +0100)
"Selecting master clock %d for channel %d on subdevice %d.\n"

The %d after subdevice was missing although the corresponding parameter
in the argument list was present.

demo/choose_clock.c

index 99e546ca22172eade2bcd4b230bc56dda3661138..9570ccfdcda4d3f4569f5a126bf916e31d6685fa 100644 (file)
@@ -51,7 +51,7 @@ int main(int argc, char *argv[])
        else
                period_ns = 0;
        clock_selection = options.value;
-       printf("Selecting master clock %d for channel %d on subdevice.\n", clock_selection, options.channel, options.subdevice);
+       printf("Selecting master clock %d for channel %d on subdevice %d.\n", clock_selection, options.channel, options.subdevice);
        if(period_ns)
        {
                printf("Clock period = %d nanoseconds.\n", period_ns);