aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbtypes.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@adacore.com>2015-12-21 06:51:50 +0400
committerJoel Brobecker <brobecker@adacore.com>2015-12-21 06:53:03 +0400
commitb4a7fcab76dc6162a4db4b93d878a212553b722a (patch)
treebcde157520e1a88966230df4210a389b4c0224cd /gdb/gdbtypes.c
parentc2345c187848c7294b87e51ddc9ecb59c835189c (diff)
downloadfsf-binutils-gdb-b4a7fcab76dc6162a4db4b93d878a212553b722a.zip
fsf-binutils-gdb-b4a7fcab76dc6162a4db4b93d878a212553b722a.tar.gz
fsf-binutils-gdb-b4a7fcab76dc6162a4db4b93d878a212553b722a.tar.bz2
Minor reformatting fix in gdbtypes.c::create_array_type_with_stride
gdb/ChangeLog: * gdbtypes.c (create_array_type_with_stride): Fix indentation.
Diffstat (limited to 'gdb/gdbtypes.c')
-rw-r--r--gdb/gdbtypes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c
index b9850cf..471b7c8 100644
--- a/gdb/gdbtypes.c
+++ b/gdb/gdbtypes.c
@@ -1081,8 +1081,8 @@ create_array_type_with_stride (struct type *result_type,
TYPE_CODE (result_type) = TYPE_CODE_ARRAY;
TYPE_TARGET_TYPE (result_type) = element_type;
if (has_static_range (TYPE_RANGE_DATA (range_type))
- && (!type_not_associated (result_type)
- && !type_not_allocated (result_type)))
+ && (!type_not_associated (result_type)
+ && !type_not_allocated (result_type)))
{
LONGEST low_bound, high_bound;