aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/vms-misc.c27
2 files changed, 19 insertions, 13 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 99011ea..902f82c 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2000-12-18 Nick Clifton <nickc@redhat.com>
+
+ * vms-misc.c (_bfd_vms_get_record): Add default case to
+ file_format switch.
+
2000-12-15 Miloslav Trmac <mitr@volny.cz>
* elfcore.h (elf_core_file_p): Move to the start of the program
diff --git a/bfd/vms-misc.c b/bfd/vms-misc.c
index c5893f3..8ebb67c 100644
--- a/bfd/vms-misc.c
+++ b/bfd/vms-misc.c
@@ -313,22 +313,23 @@ _bfd_vms_get_record (abfd)
switch (PRIV(file_format))
{
- case FF_UNKNOWN:
- case FF_FOREIGN:
- test_len = 6; /* probe 6 bytes */
- test_start = 2; /* where the record starts */
+ case FF_UNKNOWN:
+ case FF_FOREIGN:
+ test_len = 6; /* probe 6 bytes */
+ test_start = 2; /* where the record starts */
break;
-
- case FF_NATIVE:
- test_len = 4;
- test_start = 0;
+
+ case FF_NATIVE:
+ test_len = 4;
+ test_start = 0;
break;
-
- case FF_VAX:
- test_len = 0;
- test_start = 0;
+
+ default:
+ case FF_VAX:
+ test_len = 0;
+ test_start = 0;
break;
- }
+ }
/* skip odd alignment byte */