diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-06-25 18:31:00 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-06-25 18:31:00 +0200 |
| commit | a4e69e11e544844034c3fbdc6789d5573f802117 (patch) | |
| tree | ab6b082018b3c721a4464e369cd865655e85e96b /python/acquire.cc | |
| parent | 128c1f00b2006c9c24638c11000e1864fc15bd04 (diff) | |
| download | python-apt-a4e69e11e544844034c3fbdc6789d5573f802117.tar.gz | |
python: Fix some build warnings.
Diffstat (limited to 'python/acquire.cc')
| -rw-r--r-- | python/acquire.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/acquire.cc b/python/acquire.cc index e13e47d6..a36012bc 100644 --- a/python/acquire.cc +++ b/python/acquire.cc @@ -93,8 +93,8 @@ static PyObject *AcquireItemRepr(PyObject *Self) char S[300]; snprintf(S,sizeof(S),"<%s object: " "Status: %i Complete: %i Local: %i IsTrusted: %i " - "FileSize: %i DestFile:'%s' " - "DescURI: '%s' ID:%i ErrorText: '%s'>", + "FileSize: %lu DestFile:'%s' " + "DescURI: '%s' ID:%lu ErrorText: '%s'>", Self->ob_type->tp_name, Itm->Status, Itm->Complete, Itm->Local, Itm->IsTrusted(), Itm->FileSize, Itm->DestFile.c_str(), Itm->DescURI().c_str(), |
