# HG changeset patch # User John W. Eaton # Date 1421206695 18000 # Node ID 47d778e6a518045f75de0a96efd4db05bef87cbc # Parent 2aaf6077eb3c55bf1eb8e75d3b84ae022fe729d9 * audiodevinfo.cc: Minor style fixes. diff --git a/libinterp/dldfcn/audiodevinfo.cc b/libinterp/dldfcn/audiodevinfo.cc --- a/libinterp/dldfcn/audiodevinfo.cc +++ b/libinterp/dldfcn/audiodevinfo.cc @@ -591,8 +591,8 @@ // a second copy of the data array to be made. const ColumnVector sound_l = sound.column (0); - const ColumnVector sound_r = (sound.columns () == 1) - ? sound_l : sound.column (1); + const ColumnVector sound_r = (sound.columns () == 1 + ? sound_l : sound.column (1)); const double *p_l = sound_l.data (); const double *p_r = sound_r.data (); @@ -1913,8 +1913,8 @@ if (nargin > 0) { - bool is_function = args(0).is_string () || args(0).is_function_handle () - || args(0).is_inline_function (); + bool is_function = (args(0).is_string () || args(0).is_function_handle () + || args(0).is_inline_function ()); if (is_function) { @@ -2570,8 +2570,8 @@ return retval; } - bool is_function = args(0).is_string () || args(0).is_function_handle () - || args(0).is_inline_function (); + bool is_function = (args(0).is_string () || args(0).is_function_handle () + || args(0).is_inline_function ()); if (is_function) {