diff options
author | bubulle@debian.org <> | 2007-07-15 08:17:44 +0200 |
---|---|---|
committer | bubulle@debian.org <> | 2007-07-15 08:17:44 +0200 |
commit | 5ffd03998b01c174298ddb3f2f914f59bdee7481 (patch) | |
tree | 053148d6cef4f862101f30de584cae0bb5048757 /apt-pkg/contrib | |
parent | d59821362ed1032920a72d3795176cccadaea6b0 (diff) | |
parent | 82d0afc286514bbe8904c3436bb6580aeaa6ad66 (diff) |
Sync with Michael
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/configuration.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/configuration.cc b/apt-pkg/contrib/configuration.cc index 7914bd07b..3109fd7a5 100644 --- a/apt-pkg/contrib/configuration.cc +++ b/apt-pkg/contrib/configuration.cc @@ -507,7 +507,7 @@ bool ReadConfigFile(Configuration &Conf,const string &FName,bool AsSectional, CurLine++; // This should be made to work instead, but this is better than looping if (F.fail() && !F.eof()) - return _error->Error(_("Line %d too long (max %lu)"), CurLine, sizeof(Buffer)); + return _error->Error(_("Line %d too long (max %u)"), CurLine, sizeof(Buffer)); _strtabexpand(Buffer,sizeof(Buffer)); _strstrip(Buffer); |