File: 0003-Removed-unexpected-parameter-from-function-call.patch

package info (click to toggle)
virtuoso-opensource 7.2.12%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 299,780 kB
  • sloc: ansic: 655,047; sql: 508,209; xml: 269,573; java: 84,064; javascript: 79,847; cpp: 37,662; sh: 32,429; cs: 25,702; php: 12,690; yacc: 11,661; lex: 7,933; makefile: 7,309; jsp: 4,523; awk: 1,719; perl: 1,013; ruby: 1,003; python: 326
file content (39 lines) | stat: -rw-r--r-- 1,222 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
From f14111645fdcbe439bfa45a4dc69039cd1cc673c Mon Sep 17 00:00:00 2001
From: Patrick van Kleef <pkleef@openlinksw.com>
Date: Thu, 10 Apr 2025 11:08:59 +0000
Subject: [PATCH] Removed unexpected parameter from function call

---
 binsrc/tests/isql.c | 2 +-
 libsrc/Wi/mtwrite.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/binsrc/tests/isql.c b/binsrc/tests/isql.c
index 50aa8bd18..79da3e1a3 100644
--- a/binsrc/tests/isql.c
+++ b/binsrc/tests/isql.c
@@ -7335,7 +7335,7 @@ rep_loop (FILE * infp, TCHAR *new_prompt)
         }
       else if (!isqlt_tcsncmp(tmp_pt,_T("#endif"),6)) /* end of conditional expression. */
         {
-          ifdef_pop (tmp_pt);
+          ifdef_pop ();
         }
       else if (*tmp_pt == '!')
 	{ /* Spawn a command to shell and wait for it if doesn't end with & */
diff --git a/libsrc/Wi/mtwrite.c b/libsrc/Wi/mtwrite.c
index 17db48911..e2ef756e9 100644
--- a/libsrc/Wi/mtwrite.c
+++ b/libsrc/Wi/mtwrite.c
@@ -1274,7 +1274,7 @@ mt_flush_all (void)
     {
       if (dbs->dbs_slices)
 	continue;
-      dirty_after += dbs_dirty_count (dbs);
+      dirty_after += dbs_dirty_count ();
       tc_dirty_after_flush += dirty_after;
     }
   END_DO_SET();
-- 
2.39.5