mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 04:30:37 -04:00
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)
20 lines
815 B
C
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;
|
|
}
|