# --- T2-COPYRIGHT-BEGIN --- # t2/package/*/ncc/hotfix.patch # Copyright (C) 2022 - 2026 The T2 SDE Project # SPDX-License-Identifier: GPL-2.0 or patched project license # --- T2-COPYRIGHT-END --- Force the compiler to interpret the constant as unsigned int instead of signed --- ncc-2.8/nccnav/nccnav.C.orig 2022-06-20 12:36:22.507859884 +0200 +++ ncc-2.8/nccnav/nccnav.C 2022-06-20 12:35:07.938853899 +0200 @@ -331,7 +331,7 @@ struct file_chunk { unsigned int start, end; -} NoChunk = { ~0, ~0 }; +} NoChunk = { ~0u, ~0u }; class lnnode : public intNode {