summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-02-10 12:57:49 -0500
committerDavid Robillard <d@drobilla.net>2025-02-10 12:57:49 -0500
commit903c00d05186502abebc4eaca83896548eaa4d02 (patch)
treead7f8eac035ce63c3795618271bc00387f3ecc28
parent6e39acc51a03645e4751c79b545994e353d1a04e (diff)
downloadpatchage-903c00d05186502abebc4eaca83896548eaa4d02.tar.gz
patchage-903c00d05186502abebc4eaca83896548eaa4d02.tar.bz2
patchage-903c00d05186502abebc4eaca83896548eaa4d02.zip
Fully parenthesize expressions
-rw-r--r--src/Canvas.cpp4
-rw-r--r--src/TextViewLog.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Canvas.cpp b/src/Canvas.cpp
index 80b5993..ae8c51d 100644
--- a/src/Canvas.cpp
+++ b/src/Canvas.cpp
@@ -146,8 +146,8 @@ Canvas::create_port(Configuration& conf,
Coord loc;
if (!conf.get_module_location(client_name, module_type, loc)) {
// No position saved, come up with a pseudo-random one
- loc.x = static_cast<double>(20 + _rng() % 640);
- loc.y = static_cast<double>(20 + _rng() % 480);
+ loc.x = static_cast<double>(20 + (_rng() % 640));
+ loc.y = static_cast<double>(20 + (_rng() % 480));
conf.set_module_location(client_name, module_type, loc);
}
diff --git a/src/TextViewLog.cpp b/src/TextViewLog.cpp
index ba7c512..ad20c37 100644
--- a/src/TextViewLog.cpp
+++ b/src/TextViewLog.cpp
@@ -76,7 +76,7 @@ TextViewLog::min_height() const
int line_height = 0;
_text_view->get_line_yrange(buffer->begin(), y, line_height);
- return line_height + 2 * _text_view->get_pixels_inside_wrap();
+ return line_height + (2 * _text_view->get_pixels_inside_wrap());
}
} // namespace patchage