Skip to content

Commit 71ec8b4

Browse files
committed
fix: missed increment of PADPOSITION in the last commit
1 parent 7b48c35 commit 71ec8b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sources/structs.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1603,15 +1603,15 @@ struct M_const {
16031603
BOOL IgnoreDeprecation; /* ignore deprecation warning */
16041604
#ifdef WITHFLOAT
16051605
#ifdef WITHPTHREADS
1606-
PADPOSITION(17,30,62,84,(sizeof(pthread_rwlock_t)+sizeof(pthread_mutex_t)*2)+1);
1606+
PADPOSITION(17,30,62,84,(sizeof(pthread_rwlock_t)+sizeof(pthread_mutex_t)*2)+2);
16071607
#else
16081608
PADPOSITION(17,28,62,84,2);
16091609
#endif
16101610
#else
16111611
#ifdef WITHPTHREADS
1612-
PADPOSITION(17,30,62,84,(sizeof(pthread_rwlock_t)+sizeof(pthread_mutex_t)*2)+1);
1612+
PADPOSITION(17,30,62,84,(sizeof(pthread_rwlock_t)+sizeof(pthread_mutex_t)*2)+2);
16131613
#else
1614-
PADPOSITION(17,28,62,84,1);
1614+
PADPOSITION(17,28,62,84,2);
16151615
#endif
16161616
#endif
16171617
};

0 commit comments

Comments
 (0)