Description: Do not use GLib's deprecated G_INLINE_FUNC.
Forwarded: not-yet
Author: Peter Pentchev <roam@ringlet.net>
Last-Update: 2020-05-07

--- a/mixlib/xmix_vm.c
+++ b/mixlib/xmix_vm.c
@@ -24,14 +24,14 @@
 #include "xmix_vm.h"
 
 /* auxiliar functions */
-G_INLINE_FUNC mix_address_t
+static inline mix_address_t
 get_M_ (const mix_vm_t *vm, const mix_ins_t *ins);
-G_INLINE_FUNC mix_word_t
+static inline mix_word_t
 get_V_ (const mix_vm_t *vm, const mix_ins_t *ins);
-G_INLINE_FUNC mix_device_t *
+static inline mix_device_t *
 get_dev_ (mix_vm_t *vm, mix_fspec_t type);
 
-G_INLINE_FUNC mix_address_t
+static inline mix_address_t
 get_M_ (const mix_vm_t *vm, const mix_ins_t *ins)
 {
   if ( ins->index == 0 )
@@ -41,13 +41,13 @@
                           mix_word_to_short_fast (get_rI_ (vm, ins->index)));
 }
 
-G_INLINE_FUNC mix_word_t
+static inline mix_word_t
 get_V_ (const mix_vm_t *vm, const mix_ins_t *ins)
 {
   return mix_word_get_field (ins->fspec, get_cell_ (vm, get_M_ (vm,ins)));
 }
 
-G_INLINE_FUNC mix_device_t *
+static inline mix_device_t *
 get_dev_ (mix_vm_t *vm, mix_fspec_t type)
 {
   if (type >= BD_NO_) return NULL;
