mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
guile/scm-math: indentation fixes
Changes the indenting of a few expressions in vlscm_convert_typed_number to be better in line with the prevailing code style. gdb/ChangeLog: 2021-07-30 George Barrett <bob@bob131.so> * guile/scm-math.c (vlscm_convert_typed_number): Fix the indentation of calls to gdbscm_make_out_of_range_error. Change-Id: I7463998b77c17a00e88058e89b52fa029ee40e03
This commit is contained in:

committed by
Simon Marchi

parent
b5b591a865
commit
91ef1ea542
@ -532,8 +532,8 @@ vlscm_convert_typed_number (const char *func_name, int obj_arg_pos, SCM obj,
|
||||
if (!scm_is_unsigned_integer (obj, 0, max))
|
||||
{
|
||||
*except_scmp
|
||||
= gdbscm_make_out_of_range_error (func_name,
|
||||
obj_arg_pos, obj,
|
||||
= gdbscm_make_out_of_range_error
|
||||
(func_name, obj_arg_pos, obj,
|
||||
_("value out of range for type"));
|
||||
return NULL;
|
||||
}
|
||||
@ -547,8 +547,8 @@ vlscm_convert_typed_number (const char *func_name, int obj_arg_pos, SCM obj,
|
||||
if (!scm_is_signed_integer (obj, min, max))
|
||||
{
|
||||
*except_scmp
|
||||
= gdbscm_make_out_of_range_error (func_name,
|
||||
obj_arg_pos, obj,
|
||||
= gdbscm_make_out_of_range_error
|
||||
(func_name, obj_arg_pos, obj,
|
||||
_("value out of range for type"));
|
||||
return NULL;
|
||||
}
|
||||
@ -561,8 +561,8 @@ vlscm_convert_typed_number (const char *func_name, int obj_arg_pos, SCM obj,
|
||||
if (!scm_is_unsigned_integer (obj, 0, max))
|
||||
{
|
||||
*except_scmp
|
||||
= gdbscm_make_out_of_range_error (func_name,
|
||||
obj_arg_pos, obj,
|
||||
= gdbscm_make_out_of_range_error
|
||||
(func_name, obj_arg_pos, obj,
|
||||
_("value out of range for type"));
|
||||
return NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user