struct ConfigSet;
struct HashElem;
-enum ConfigEvent;
#define REDRAW_INDEX (1 << 0)
#define REDRAW_MOTION (1 << 1)
mutt_buffer_reset(err);
TEST_MSG("Setting %s to %d\n", name, value);
rc = cs_str_native_set(cs, name, value, err);
- if (!TEST_CHECK(rc & CSR_SUC_NO_CHANGE) != 0)
+ if (!TEST_CHECK((rc & CSR_SUC_NO_CHANGE) != 0))
{
TEST_MSG("%s\n", err->data);
return false;
short_line();
TEST_MSG("Setting %s to %d\n", name, value);
rc = cs_str_native_set(cs, name, value, err);
- if (!TEST_CHECK(rc & CSR_SUC_NO_CHANGE) != 0)
+ if (!TEST_CHECK((rc & CSR_SUC_NO_CHANGE) != 0))
{
TEST_MSG("This test should have failed\n");
return false;
short_line();
TEST_MSG("Setting %s to %d\n", name, value);
rc = cs_str_native_set(cs, name, value, err);
- if (!TEST_CHECK(rc & CSR_SUC_NO_CHANGE) != 0)
+ if (!TEST_CHECK((rc & CSR_SUC_NO_CHANGE) != 0))
{
TEST_MSG("This test should have failed\n");
return false;
mutt_buffer_reset(err);
TEST_MSG("Setting %s to %d\n", name, value);
rc = cs_str_native_set(cs, name, value, err);
- if (!TEST_CHECK(rc & CSR_SUC_NO_CHANGE) != 0)
+ if (!TEST_CHECK((rc & CSR_SUC_NO_CHANGE) != 0))
{
TEST_MSG("%s\n", err->data);
return false;