提交 1bcdfbcf 编写于 作者: P Peter Meerwald 提交者: Greg Kroah-Hartman

staging: iio: use PRId64 format specifier for int64_t

Signed-off-by: NPeter Meerwald <pmeerw@pmeerw.net>
Acked-by: NJonathan Cameron <jic23@kernel.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 42196d39
......@@ -29,6 +29,7 @@
#include <string.h>
#include <poll.h>
#include <endian.h>
#include <inttypes.h>
#include "iio_utils.h"
/**
......@@ -111,7 +112,7 @@ void process_scan(char *data,
/* special case for timestamp */
if (channels[k].scale == 1.0f &&
channels[k].offset == 0.0f)
printf(" %lld", val);
printf("%" PRId64 " ", val);
else
printf("%05f ", ((float)val +
channels[k].offset)*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册