mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
Patch skalibs-2.14 support into runwhen-2021.04.30: - Skalibs no longer pollutes the namespace with uint64 (without _t). - Patch runwhen to use uint64_t instead of uint64. - Update dependency to devel/skalibs>=2.14.1.1 - Bump port revision. No functional change intended. PR: 279116
23 lines
591 B
C
23 lines
591 B
C
--- src/rw_scan.c.orig 2020-04-23 08:44:17 UTC
|
|
+++ src/rw_scan.c
|
|
@@ -9,9 +9,9 @@ extern char const* PROG;
|
|
|
|
extern char const* PROG;
|
|
|
|
-void rw_scan(tain_t* stamp, char const* text) {
|
|
+void rw_scan(tain* stamp, char const* text) {
|
|
unsigned int i, scale;
|
|
- uint64 u;
|
|
+ uint64_t u;
|
|
char const* x;
|
|
switch (text[0]) {
|
|
case '$':
|
|
@@ -53,7 +53,7 @@ void rw_scan(tain_t* stamp, char const* text) {
|
|
tai_unix(tain_secp(stamp), u);
|
|
break;
|
|
case 'i': {
|
|
- localtmn_t loc;
|
|
+ localtmn loc;
|
|
short dummy;
|
|
++text;
|
|
i=localtmn_scan(text, &loc);
|