eal: explicit cast of strlcpy return
authorAndy Green <andy@warmcat.com>
Thu, 17 May 2018 14:03:48 +0000 (22:03 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Sun, 20 May 2018 22:19:08 +0000 (00:19 +0200)
GCC 8.1 warns:
rte_string_fns.h: In function 'rte_strlcpy':
rte_string_fns.h:58:9:
warning: conversion to 'size_t' {aka 'long unsigned int'} from
'int' may change the sign of the result [-Wsign-conversion]
  return snprintf(dst, size, "%s", src);
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Fixes: 5364de644a4b ("eal: support strlcpy function")

Signed-off-by: Andy Green <andy@warmcat.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
lib/librte_eal/common/include/rte_string_fns.h

index fcbb42e..97597a1 100644 (file)
@@ -55,7 +55,7 @@ rte_strsplit(char *string, int stringlen,
 static inline size_t
 rte_strlcpy(char *dst, const char *src, size_t size)
 {
-       return snprintf(dst, size, "%s", src);
+       return (size_t)snprintf(dst, size, "%s", src);
 }
 
 /* pull in a strlcpy function */