uw7-20000331.patch
application/x-patch
Filename: uw7-20000331.patch
Type: application/x-patch
Part: 0
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: context
| File | + | − |
|---|---|---|
| src/backend/utils/adt/int8.c | 6 | 2 |
*** ./src/backend/utils/adt/int8.c.orig Fri Mar 31 14:12:42 2000
--- ./src/backend/utils/adt/int8.c Fri Mar 31 14:14:52 2000
***************
*** 410,417 ****
if (*arg1 < 1)
*result = 0;
else
! for (i = *arg1, *result = 1; i > 0; --i)
! *result *= i;
return result;
}
--- 410,421 ----
if (*arg1 < 1)
*result = 0;
else
! {
! i = *arg1;
! *result = 1L;
! while (i > 0L)
! *result *= i--;
! }
return result;
}