We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8743272 commit 46a5d4bCopy full SHA for 46a5d4b
generic/tclInt.h
@@ -4906,7 +4906,7 @@ MODULE_SCOPE Tcl_LibraryInitProc Procbodytest_SafeInit;
4906
if (uw_ > WIDE_MAX) { \
4907
mp_int bignumValue_; \
4908
if (mp_init_u64(&bignumValue_, uw_) == MP_OKAY) { \
4909
- (objPtr) = Tcl_NewBignumObj(&bignumValue_)); \
+ (objPtr) = Tcl_NewBignumObj(&bignumValue_); \
4910
} else { \
4911
(objPtr) = NULL; \
4912
} \
generic/tclLink.c
@@ -557,9 +557,9 @@ GetUWide(
557
while (numBytes-- > 0) {
558
value = (value << CHAR_BIT) | *bytes++;
559
}
560
-#else /* !WORDS_BIGENDIAN */
+#else /* WORDS_BIGENDIAN */
561
/*
562
- * Little-endian can read the value directly.
+ * Big-endian can read the value directly.
563
*/
564
value = scratch.value;
565
#endif /* WORDS_BIGENDIAN */
0 commit comments