shithub: orca

Download patch

ref: f20babb05c1ea6d27fc9994484b7097ba7ba98d7
parent: a0c8888dc85ebdace51ab1cb958a58379c13f3ef
author: cancel <cancel@cancel.fm>
date: Wed Jan 8 21:10:06 EST 2020

Fix missing static on fg_bg()

--- a/term_util.h
+++ b/term_util.h
@@ -34,7 +34,7 @@
   A_reverse = A_REVERSE,
 } Term_attr;
 
-ORCA_FORCE_INLINE
+static ORCA_FORCE_INLINE
 attr_t fg_bg(Color_name fg, Color_name bg) {
   return COLOR_PAIR(1 + fg * Colors_count + bg);
 }