diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-03-01 06:14:29 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-03-01 06:14:29 +0800 |
commit | 3e10419865149795246453e4a8aa7776c7a4f323 (patch) | |
tree | 49c621d165ed5ad5351a089253b18e543bdc2843 /math | |
parent | e0925091e58e3c2d9c47354875f39507c5f4a33b (diff) | |
download | marcuscom-ports-3e10419865149795246453e4a8aa7776c7a4f323.tar marcuscom-ports-3e10419865149795246453e4a8aa7776c7a4f323.tar.gz marcuscom-ports-3e10419865149795246453e4a8aa7776c7a4f323.tar.bz2 marcuscom-ports-3e10419865149795246453e4a8aa7776c7a4f323.tar.lz marcuscom-ports-3e10419865149795246453e4a8aa7776c7a4f323.tar.xz marcuscom-ports-3e10419865149795246453e4a8aa7776c7a4f323.tar.zst marcuscom-ports-3e10419865149795246453e4a8aa7776c7a4f323.zip |
Fix build on 4.X.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3746 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'math')
-rw-r--r-- | math/gcalctool/files/patch-gcalctool_functions.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/math/gcalctool/files/patch-gcalctool_functions.c b/math/gcalctool/files/patch-gcalctool_functions.c new file mode 100644 index 000000000..ba3d6af38 --- /dev/null +++ b/math/gcalctool/files/patch-gcalctool_functions.c @@ -0,0 +1,19 @@ +--- gcalctool/functions.c.orig Mon Feb 28 17:07:30 2005 ++++ gcalctool/functions.c Mon Feb 28 17:07:43 2005 +@@ -311,7 +311,6 @@ + void + trig_filter(char **func) + { +- assert(func); + + enum mode { + normal = 0, +@@ -322,6 +321,8 @@ + + int inverse; + int hyperbolic; ++ ++ assert(func); + + inverse = (v->inverse) ? inv : 0; + hyperbolic = (v->hyperbolic) ? hyp : 0; |