annotate target-utils/libtiffs/globals.c @ 1011:6d9b10633f10 default tip

etmsync Pirelli IMEI retrieval: fix poor use of printf() Bug reported by Vadim Yanitskiy <fixeria@osmocom.org>: the construct where a static-allocated string was passed to printf() without any format arguments causes newer compilers to report a security problem. Given that formatted output is not needed here, just fixed string output, change printf() to fputs(), and direct the error message to stderr while at it.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 23 May 2024 17:29:57 +0000
parents 87cb03b35f77
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
60
87cb03b35f77 target-utils: long-overdue s/mpffs/tiffs/ and s/MPFFS/TIFFS/ rename
Mychaela Falconia <falcon@freecalypso.org>
parents: 0
diff changeset
1 /* global variables for the TIFFS reader code */
0
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 #include "types.h"
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 #include "struct.h"
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
60
87cb03b35f77 target-utils: long-overdue s/mpffs/tiffs/ and s/MPFFS/TIFFS/ rename
Mychaela Falconia <falcon@freecalypso.org>
parents: 0
diff changeset
6 struct inode *tiffs_active_index;
87cb03b35f77 target-utils: long-overdue s/mpffs/tiffs/ and s/MPFFS/TIFFS/ rename
Mychaela Falconia <falcon@freecalypso.org>
parents: 0
diff changeset
7 int tiffs_root_ino;
87cb03b35f77 target-utils: long-overdue s/mpffs/tiffs/ and s/MPFFS/TIFFS/ rename
Mychaela Falconia <falcon@freecalypso.org>
parents: 0
diff changeset
8 int tiffs_init_done;