diff options
author | Cédric Le Goater <clg@fr.ibm.com> | 2015-02-24 12:14:16 +0100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-02-26 18:19:40 +1100 |
commit | 61f1609249bca3234fd3f463ebc55c6eeef8f494 (patch) | |
tree | 66b50063ba5995183260b03d1a8e46d06930120b /include | |
parent | aedc25b063b8125e84805781f8d368d8fd78f9c3 (diff) | |
download | skiboot-61f1609249bca3234fd3f463ebc55c6eeef8f494.zip skiboot-61f1609249bca3234fd3f463ebc55c6eeef8f494.tar.gz skiboot-61f1609249bca3234fd3f463ebc55c6eeef8f494.tar.bz2 |
sparse: MEMCONS_MAGIC is a long
Signed-off-by: Cédric Le Goater <clg@fr.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/console.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/console.h b/include/console.h index 5b6c5d5..e426adb 100644 --- a/include/console.h +++ b/include/console.h @@ -29,7 +29,7 @@ */ struct memcons { uint64_t magic; -#define MEMCONS_MAGIC 0x6630696567726173 +#define MEMCONS_MAGIC 0x6630696567726173LL uint64_t obuf_phys; uint64_t ibuf_phys; uint32_t obuf_size; |