Avoid "redefined" _GNU_SOURCE compiler warning by defining it in rbd.c the same way it is defined on the conventional "gcc -D_GNU_SOURCE" command line. Signed-off-by: David Butterfield <dab21774@xxxxxxxxx> --- rbd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rbd.c b/rbd.c index ed50aa5..8f78e54 100644 --- a/rbd.c +++ b/rbd.c @@ -14,7 +14,7 @@ * under the License. */ -#define _GNU_SOURCE +#define _GNU_SOURCE 1 #include <inttypes.h> #include <stddef.h> #include <stdint.h> -- 2.12.2.575.gb14f27f -- To unsubscribe from this list: send the line "unsubscribe target-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html