test: Warning cleanup
const char in test/xfree86.c. Cast values to (intmax_t) for %ju format in test/signal-logging.c. Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
fecc7eb1cf
commit
5bc5684d4c
|
@ -56,7 +56,7 @@ check_signed_number_format_test(long int number)
|
||||||
FormatInt64(number, string);
|
FormatInt64(number, string);
|
||||||
if(strncmp(string, expected, 21) != 0) {
|
if(strncmp(string, expected, 21) != 0) {
|
||||||
fprintf(stderr, "Failed to convert %jd to decimal string (expected %s but got %s)\n",
|
fprintf(stderr, "Failed to convert %jd to decimal string (expected %s but got %s)\n",
|
||||||
number, expected, string);
|
(intmax_t) number, expected, string);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -93,7 +93,7 @@ check_number_format_test(long unsigned int number)
|
||||||
FormatUInt64(number, string);
|
FormatUInt64(number, string);
|
||||||
if(strncmp(string, expected, 21) != 0) {
|
if(strncmp(string, expected, 21) != 0) {
|
||||||
fprintf(stderr, "Failed to convert %ju to decimal string (%s vs %s)\n",
|
fprintf(stderr, "Failed to convert %ju to decimal string (%s vs %s)\n",
|
||||||
number, expected, string);
|
(intmax_t) number, expected, string);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ check_number_format_test(long unsigned int number)
|
||||||
FormatUInt64Hex(number, string);
|
FormatUInt64Hex(number, string);
|
||||||
if(strncmp(string, expected, 17) != 0) {
|
if(strncmp(string, expected, 17) != 0) {
|
||||||
fprintf(stderr, "Failed to convert %ju to hexadecimal string (%s vs %s)\n",
|
fprintf(stderr, "Failed to convert %ju to hexadecimal string (%s vs %s)\n",
|
||||||
number, expected, string);
|
(intmax_t) number, expected, string);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,8 @@ xfree86_option_list_duplicate(void)
|
||||||
static void
|
static void
|
||||||
xfree86_add_comment(void)
|
xfree86_add_comment(void)
|
||||||
{
|
{
|
||||||
char *current = NULL, *comment;
|
char *current = NULL;
|
||||||
|
const char *comment;
|
||||||
char compare[1024] = { 0 };
|
char compare[1024] = { 0 };
|
||||||
|
|
||||||
comment = "# foo";
|
comment = "# foo";
|
||||||
|
|
Loading…
Reference in New Issue