diff options
| author | Basil L. Contovounesios | 2024-03-16 14:15:25 +0100 |
|---|---|---|
| committer | Basil L. Contovounesios | 2024-03-16 14:15:25 +0100 |
| commit | ad3a3ad6e616a53ec5ae28aed02e8d3461a5ce5c (patch) | |
| tree | ee1c7b552185ef92ff919af02b1c4f058f4fa41b /src/coding.c | |
| parent | 685f4295f9810b4aab8ec3ba7146b17904a1c37f (diff) | |
| download | emacs-ad3a3ad6e616a53ec5ae28aed02e8d3461a5ce5c.tar.gz emacs-ad3a3ad6e616a53ec5ae28aed02e8d3461a5ce5c.zip | |
; Pacify -Wmaybe-uninitialized in coding.c.
Warning seen with GCC 13 -Og.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 5f3ceab718b..ff7cf56c297 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -5488,7 +5488,7 @@ decode_coding_charset (struct coding_system *coding) | |||
| 5488 | { | 5488 | { |
| 5489 | int c; | 5489 | int c; |
| 5490 | Lisp_Object val; | 5490 | Lisp_Object val; |
| 5491 | struct charset *charset; | 5491 | struct charset *charset UNINIT; |
| 5492 | int dim; | 5492 | int dim; |
| 5493 | int len = 1; | 5493 | int len = 1; |
| 5494 | unsigned code; | 5494 | unsigned code; |