summaryrefslogtreecommitdiff
path: root/AppPkg/Applications/Python/Python-2.7.2/Objects/stringobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Objects/stringobject.c')
-rw-r--r--AppPkg/Applications/Python/Python-2.7.2/Objects/stringobject.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Objects/stringobject.c b/AppPkg/Applications/Python/Python-2.7.2/Objects/stringobject.c
index 5abc9957e2..3d3c6413df 100644
--- a/AppPkg/Applications/Python/Python-2.7.2/Objects/stringobject.c
+++ b/AppPkg/Applications/Python/Python-2.7.2/Objects/stringobject.c
@@ -4263,9 +4263,9 @@ PyString_Format(PyObject *format, PyObject *args)
int c = '\0';
int fill;
int isnumok;
- PyObject *v = NULL;
- PyObject *temp = NULL;
- char *pbuf;
+ PyObject *v = NULL;
+ PyObject *temp = NULL;
+ char *pbuf = NULL;
int sign;
Py_ssize_t len;
char formatbuf[FORMATBUFLEN];