]> j8takagi.net git repositories - yacasl2.git/commitdiff
コンパイルエラーを抑制
authorj8takagi <j8takagi@nifty.com>
Mon, 25 May 2026 14:06:33 +0000 (23:06 +0900)
committerj8takagi <j8takagi@nifty.com>
Mon, 25 May 2026 14:06:33 +0000 (23:06 +0900)
LICENSE
README
VERSION
doc/install.texi
doc/manual.texi
src/assemble.c

diff --git a/LICENSE b/LICENSE
index 9dec34acf06e5c4bcee1a61f03a553b931b47f0c..0cd52f29a3e543c8476ee51ae4d46420ca4bd301 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2010-2023, j8takagi.
+Copyright (c) 2010-2026, j8takagi.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/README b/README
index 0c0d21e3cee8dae2d56fa977dd493d3c434c7f80..1ef04e0f41b8c063e4c89cfa53f336462e705d6f 100644 (file)
--- a/README
+++ b/README
@@ -29,7 +29,7 @@ YACASL2のWebサイトは、次のURLです。
 ライセンス
 ******************
 
-Copyright (c) 2010-2023, j8takagi.
+Copyright (c) 2010-2026, j8takagi.
 YACASL2 is licensed under the MIT license.
 
 ライセンスの詳細は、同梱のLICENSEを参照してください。
diff --git a/VERSION b/VERSION
index 6fe00d3a3a3d598cc451379f37f577b4f3d82f33..1f3d544c164f05ad20b6d768e0102da002013c6f 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-v0.5p31
+v0.5p32
index 1cfb0664700ad7b422d89785b975f3eace993a54..4ca5d99e25448866d3c04cd0ce9d381e1bf186f3 100644 (file)
@@ -14,7 +14,7 @@
 @c %**end of header
 
 @copying
-Copyright @copyright{} 2010-2023 j8takagi
+Copyright @copyright{} 2010-2026 j8takagi
 @end copying
 
 @titlepage
index 7e7c27cb0e97ad6a634ae68bbad940c57189a856..ae2140dff05470436f25958d19edf678ce038308 100644 (file)
@@ -14,7 +14,7 @@
 @c %**end of header
 
 @copying
-Copyright @copyright{} 2010-2023 j8takagi
+Copyright @copyright{} 2010-2026 j8takagi
 @end copying
 
 @dircategory Programming
index 12bb84440ba4c94785c5f32606ac03cfe43a9fc9..f59757438babda8bd2b1cf3a86f9fc5aed6b1804 100644 (file)
@@ -542,7 +542,7 @@ void assemble_rpop(const CMDLINE *cmdl, PASS pass)
 
 bool casl2cmd(CMD *cmdtbl, const CMDLINE *cmdl, PASS pass)
 {
-    void (*cmdptr)() = NULL;
+    void (*cmdptr)(const CMDLINE *, PASS) = NULL;
 
     for(int i = 0; cmdtbl[i].name[0]; i++) {
         if(strcmp(cmdl->cmd, cmdtbl[i].name) == 0) {