diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-16 23:55:12 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-17 19:02:20 +0100 |
commit | f4963a52e96230374826137cce44813c94853e6f (patch) | |
tree | f2cb67804faa33f4a735b9781f5bf77a830782c4 /device/if_ether.h | |
parent | 68bbdd1e18a87afede6cbdffdb8c7078ed3fa835 (diff) | |
download | gnumach-f4963a52e96230374826137cce44813c94853e6f.tar.gz gnumach-f4963a52e96230374826137cce44813c94853e6f.tar.bz2 gnumach-f4963a52e96230374826137cce44813c94853e6f.zip |
device: qualify pointers whose dereferenced values are constant with const
Diffstat (limited to 'device/if_ether.h')
-rw-r--r-- | device/if_ether.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/device/if_ether.h b/device/if_ether.h index e368fbf6..91d4d9a6 100644 --- a/device/if_ether.h +++ b/device/if_ether.h @@ -46,7 +46,7 @@ struct ether_header { }; #ifdef KERNEL -extern char * ether_sprintf(u_char *); +extern char * ether_sprintf(const u_char *); #endif /* KERNEL */ #endif /*_DEVICE_IF_ETHER_H_*/ |