ports/lang/rexx-regina/files/patch-stack.c
Fernando Apesteguía dc4b1b5154 lang/rexx-regina: upgrade to 3.9.3
ChangeLog:
https://sourceforge.net/projects/regina-rexx/files/regina-rexx/3.9.3/

PR:	252726
Submitted by:	bob@eager.cx (maintainer)
MFH:	2021Q1 (plenty of bugfixes)
2021-01-18 19:17:53 +00:00

20 lines
815 B
C

--- stack.c.orig 2021-01-14 22:35:55 UTC
+++ stack.c
@@ -1314,7 +1314,7 @@ int create_queue( tsd_t *TSD, const streng *queue_name
/*
* Create a unique queue name
*/
- sprintf(buf,"S%d-%ld-%d", getpid(), clock(), st->runner++ );
+ sprintf(buf,"S%d-%d-%d", getpid(), clock(), st->runner++ );
new_queue = Str_cre_TSD( TSD, buf ) ;
}
else
@@ -1344,7 +1344,7 @@ int create_queue( tsd_t *TSD, const streng *queue_name
/*
* Create a unique queue name
*/
- sprintf(buf,"S%d-%ld-%d", getpid(), clock(), st->runner++ );
+ sprintf(buf,"S%d-%d-%d", getpid(), clock(), st->runner++ );
new_queue = Str_cre_TSD( TSD, buf ) ;
rc = 1;
}