mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Make gcc -Wall happy
This commit is contained in:
parent
472c04f18f
commit
da9c2710c7
5 changed files with 6 additions and 20 deletions
|
@ -669,17 +669,17 @@ formatstring(format, args)
|
|||
else {
|
||||
/* Got a format specifier */
|
||||
int flags = 0;
|
||||
char *fmtstart = fmt++;
|
||||
int width = -1;
|
||||
int prec = -1;
|
||||
int size = 0;
|
||||
int c = '\0';
|
||||
int fill;
|
||||
object *v;
|
||||
object *v = NULL;
|
||||
object *temp = NULL;
|
||||
char *buf;
|
||||
int sign;
|
||||
int len;
|
||||
fmt++;
|
||||
if (*fmt == '(') {
|
||||
char *keystart;
|
||||
int keylen;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue