-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recent GCC's on fedora complain about the use of %lld for uint64_t because its unsigned. Convert a number of these and similar calls. Signed-off-by: Jeremy Linton <[email protected]> Signed-off-by: Simon Horman <[email protected]>
- Loading branch information
1 parent
6aecc32
commit aecc554
Showing
5 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* ARM64 crashdump. | ||
* partly derived from arm implementation | ||
* partly derived from arm implementation | ||
* | ||
* Copyright (c) 2014-2017 Linaro Limited | ||
* Author: AKASHI Takahiro <[email protected]> | ||
|
@@ -71,7 +71,7 @@ static int iomem_range_callback(void *UNUSED(data), int UNUSED(nr), | |
*/ | ||
for (i = 0; i < usablemem_rgns.max_size; i++) { | ||
if (usablemem_rgns.ranges[i].start == base) { | ||
fprintf(stderr, "Warning, the range already exists in usablemem_rgns, base=%lx, length=%lx\n", | ||
fprintf(stderr, "Warning, the range already exists in usablemem_rgns, base=%llx, length=%llx\n", | ||
base, length); | ||
return 0; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters