No other code change.
gdb/ChangeLog:
        * ada-lang.c (ada_value_cast): Remove unnecessary parentheses.
+2018-09-08  Joel Brobecker  <brobecker@adacore.com>
+
+       * ada-lang.c (ada_value_cast): Remove unnecessary parentheses.
+
 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
 
        * ada-typeprint.c (print_range): Print the bounds using TYPE
 
     return arg2;
 
   if (ada_is_fixed_point_type (type))
-    return (cast_to_fixed (type, arg2));
+    return cast_to_fixed (type, arg2);
 
   if (ada_is_fixed_point_type (value_type (arg2)))
     return cast_from_fixed (type, arg2);