File: type-mismatch.patch

package info (click to toggle)
dsdp 5.8-9.4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 2,168 kB
  • ctags: 4,285
  • sloc: ansic: 27,119; makefile: 314; sh: 30
file content (39 lines) | stat: -rw-r--r-- 1,168 bytes parent folder | download | duplicates (4)
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
Description: Use correct integer type for Fortran prototypes and variables
 GNU Fortran's default integer width is 32-bit, the same as GCC, therefore use
 int rather than long int when interfacing with Fortran. This was an issue on
 64-bit big-endian systems, since the upper 32 bits of the long would be set,
 which would also be lost when truncating to a 32-bit integer.
Author: James Clarke <jrtc27@debian.org>
Bug-Debian: https://bugs.debian.org/857067
Last-Update: 2017-03-28
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/include/dsdplapack.h
+++ b/include/dsdplapack.h
@@ -4,11 +4,11 @@
 \file dsdplapack.h
 \brief DSDP uses BLAS and LAPACK for many of its operations.
 */
-
-typedef long int ffinteger;
 /*
-typedef int ffinteger;
+typedef long int ffinteger;
 */
+typedef int ffinteger;
+
 /*
 #define  __DSDP_NONAMEMANGLING
 #undef  __DSDP_NONAMEMANGLING
--- a/src/vecmat/dtrsm2.c
+++ b/src/vecmat/dtrsm2.c
@@ -1,7 +1,7 @@
 #include "dsdplapack.h"
 
-typedef long int integer;
-typedef long int logical;
+typedef int integer;
+typedef int logical;
 
 #define max(a,b) ((a) >= (b) ? (a) : (b))
 #define dmax(a,b) (double)max(a,b)