plugins exts BUGFIX storage must be 8B large

Fixes #2253
diff --git a/src/plugins_exts.h b/src/plugins_exts.h
index de4c9f7..74ce215 100644
--- a/src/plugins_exts.h
+++ b/src/plugins_exts.h
@@ -393,7 +393,7 @@
  */
 struct lysp_ext_substmt {
     enum ly_stmt stmt;  /**< parsed substatement */
-    void *storage;      /**< pointer to the parsed storage of the statement according to the specific
+    uint64_t storage;   /**< (pointer to) the parsed storage of the statement according to the specific
                              lys_ext_substmt::stmt */
 };
 
@@ -426,7 +426,7 @@
  */
 struct lysc_ext_substmt {
     enum ly_stmt stmt;  /**< compiled substatement */
-    void *storage;      /**< pointer to the compiled storage of the statement according to the specific
+    uint64_t storage;   /**< (pointer to) the compiled storage of the statement according to the specific
                              lys_ext_substmt::stmt */
 };