aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-05-03 14:46:09 -0400
committerDavid Robillard <d@drobilla.net>2021-05-03 18:30:39 -0400
commitbd7dbdec48a48a70b8f380a928325291c53ecaf0 (patch)
tree96bc96c530bf851e590067784b71719c1e58807d /src
parent1b5cc87acd7cd6e12baab2f5b550b0d69f1361d5 (diff)
downloadpugl-bd7dbdec48a48a70b8f380a928325291c53ecaf0.tar.gz
pugl-bd7dbdec48a48a70b8f380a928325291c53ecaf0.tar.bz2
pugl-bd7dbdec48a48a70b8f380a928325291c53ecaf0.zip
Shrink puglGetViewHint() implementation
Diffstat (limited to 'src')
-rw-r--r--src/implementation.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/implementation.c b/src/implementation.c
index d3a6647..4fe6a8a 100644
--- a/src/implementation.c
+++ b/src/implementation.c
@@ -222,11 +222,7 @@ puglSetViewHint(PuglView* view, PuglViewHint hint, int value)
int
puglGetViewHint(const PuglView* view, PuglViewHint hint)
{
- if (hint < PUGL_NUM_VIEW_HINTS) {
- return view->hints[hint];
- }
-
- return PUGL_DONT_CARE;
+ return (hint < PUGL_NUM_VIEW_HINTS) ? view->hints[hint] : PUGL_DONT_CARE;
}
PuglStatus