emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

scratch/igc 5704133d120 10/10: Fix a typo


From: Gerd Moellmann
Subject: scratch/igc 5704133d120 10/10: Fix a typo
Date: Tue, 30 Apr 2024 15:03:54 -0400 (EDT)

branch: scratch/igc
commit 5704133d120ac4038018a85e160c74cf2059488c
Author: Gerd Möllmann <gerd@gnu.org>
Commit: Gerd Möllmann <gerd@gnu.org>

    Fix a typo
---
 src/coding.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/coding.c b/src/coding.c
index 05f5be81bc5..ff820698eb8 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -11849,7 +11849,7 @@ syms_of_coding (void)
   Vcoding_category_table = make_nil_vector (coding_category_max);
   staticpro (&Vcoding_category_table);
 #ifdef HAVE_MPS
-  for (size_t i; i < ARRAYELTS (coding_categories); i++)
+  for (size_t i = 0; i < ARRAYELTS (coding_categories); i++)
     {
       struct coding_system* cs = &coding_categories[i];
       Lisp_Object *src = &cs->src_object;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]