From ec75303792bfecfcc921295f0f48517b8dc26d35 Mon Sep 17 00:00:00 2001 From: Nicholas Corgan Date: Thu, 16 Jun 2016 08:02:11 -0700 Subject: Fixed minor warnings * Mismatched printf format strings * Number truncation * Unreferenced variables --- host/tests/subdev_spec_c_test.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'host/tests/subdev_spec_c_test.c') diff --git a/host/tests/subdev_spec_c_test.c b/host/tests/subdev_spec_c_test.c index 7663ba357..f69b825a8 100644 --- a/host/tests/subdev_spec_c_test.c +++ b/host/tests/subdev_spec_c_test.c @@ -1,5 +1,5 @@ // -// Copyright 2015 Ettus Research LLC +// Copyright 2015-2016 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -71,7 +71,8 @@ int main(){ uhd_subdev_spec_size(subdev_spec2, &size2) ) if(size1 != size2){ - printf("%s:%d: Sizes do not match. %lu vs. %lu\n", __FILE__, __LINE__, size1, size2); + printf("%s:%d: Sizes do not match. %lu vs. %lu\n", __FILE__, __LINE__, + (unsigned long)size1, (unsigned long)size2); return_code = EXIT_FAILURE; goto free_subdev_spec2; } -- cgit v1.2.3