From 50a57aafa08b87ca1d019e86b75513ea22ae4752 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Wed, 2 Jan 2008 01:37:02 +0000 Subject: [PATCH] Typos git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23215 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/partitioning_systems/atari/atari.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/add-ons/kernel/partitioning_systems/atari/atari.h b/src/add-ons/kernel/partitioning_systems/atari/atari.h index 22f8a484f8..25491039e3 100644 --- a/src/add-ons/kernel/partitioning_systems/atari/atari.h +++ b/src/add-ons/kernel/partitioning_systems/atari/atari.h @@ -21,11 +21,11 @@ struct atari_partition_entry { #define ATARI_PART_BOOTABLE 0x80 uint8 flags; /* some known types */ -#define ATARI_PART_TYEP_GEM 'G', 'E', 'M' -#define ATARI_PART_TYEP_LNX 'L', 'N', 'X' -#define ATARI_PART_TYEP_OS9 'O', 'S', '9' +#define ATARI_PART_TYPE_GEM 'G', 'E', 'M' +#define ATARI_PART_TYPE_LNX 'L', 'N', 'X' +#define ATARI_PART_TYPE_OS9 'O', 'S', '9' /* the one we'll use */ -#define ATARI_PART_TYEP_BFS 'B', 'F', 'S' +#define ATARI_PART_TYPE_BFS 'B', 'F', 'S' char id[3]; uint32 start; uint32 size;