Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch mistake Excluding Merge-Ins
This is equivalent to a diff from 620e1e0fc4 to 263acf1668
2025-03-28
| ||
14:47 | Fix a ULARGE_INTEGER struct initialization warning on Windows. check-in: 1f0adaa7fd user: stephan tags: trunk | |
14:43 | Fix a ULARGE_INTEGER struct initialization warning on Windows. (Edit: moving to mistake branch because msys changed the exec bits of many files.) Closed-Leaf check-in: 263acf1668 user: stephan tags: mistake | |
13:22 | Add a checkbox to the /setup_timeline page to control the raw-bgcolor setting. check-in: 620e1e0fc4 user: drh tags: trunk | |
12:56 | Attempt to fix the graph CSS for the Xekri skin. check-in: d176fea43e user: drh tags: trunk | |
2025-02-08
| ||
22:00 | Fix for a struct initialization warning on Windows, but cannot currently test this for reasons covered in [forum:044797b3ac|forum post 044797b3ac]. Closed-Leaf check-in: fc0c0eb4ed user: stephan tags: windows-warning-fix | |
Changes to src/winfile.c.
︙ | ︙ | |||
503 504 505 506 507 508 509 | fi2.FileId[5], fi2.FileId[4], fi2.FileId[3], fi2.FileId[2], fi2.FileId[1], fi2.FileId[0]); } } if( zFileId==0 ){ if( GetFileInformationByHandle(hFile,&fi) ){ | | | | 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 | fi2.FileId[5], fi2.FileId[4], fi2.FileId[3], fi2.FileId[2], fi2.FileId[1], fi2.FileId[0]); } } if( zFileId==0 ){ if( GetFileInformationByHandle(hFile,&fi) ){ ULARGE_INTEGER FileId = {{ /*.LowPart = */ fi.nFileIndexLow, /*.HighPart = */ fi.nFileIndexHigh }}; zFileId = mprintf( "%08x/%016llx", fi.dwVolumeSerialNumber,(u64)FileId.QuadPart); } } CloseHandle(hFile); } |
︙ | ︙ |