Differences From Artifact [93b628d56f]:
- File src/util.c — part of check-in [44e5125f8f] at 2025-07-23 16:01:31 on branch gen-uuid — Replace a call to mprintf() with fossil_strdup(). (user: danield size: 27966) [more...]
To Artifact [e202d80826]:
- File src/util.c — part of check-in [a8ef11b63c] at 2025-07-30 17:48:54 on branch trunk — Fix a compiler warning in the previous check-in. (user: danield size: 27973) [more...]
| ︙ | |||
924 925 926 927 928 929 930 | 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 | - + |
*p++ = '-'; /* Add a dash after byte 4, 6, 8, and 12 */
}
*p++ = zDigits[aBlob[i]>>4];
*p++ = zDigits[aBlob[i]&0xf];
}
*p = 0;
|
| ︙ |