diff options
author | Josh Boyer <jwboyer@gmail.com> | 2006-05-17 18:21:50 -0500 |
---|---|---|
committer | Josh Boyer <jwboyer@gmail.com> | 2006-05-17 18:21:50 -0500 |
commit | 5bae9f28100c12605be1a5852d04cdf973fd323c (patch) | |
tree | 1d0b041b7e7031697b61ca1a714e0f67d74d8e51 /rfdformat.c | |
parent | 16b24f3f92973a057e2de7e57c5ec25df5df52e9 (diff) |
Switch to using standard types. This is userspace, not kernel.
Signed-off-by: Josh Boyer <jwboyer@gmail.com>
Diffstat (limited to 'rfdformat.c')
-rw-r--r-- | rfdformat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rfdformat.c b/rfdformat.c index ee84a21..dbe1229 100644 --- a/rfdformat.c +++ b/rfdformat.c @@ -90,7 +90,7 @@ void process_options(int argc, char *argv[], const char **mtd_filename) int main(int argc, char *argv[]) { - static const __u8 magic[] = { 0x93, 0x91 }; + static const uint8_t magic[] = { 0x93, 0x91 }; int fd, block_count, i; struct mtd_info_user mtd_info; char buf[512]; |