diff --git a/SOPE/sope-gdl1/GDLContentStore/ChangeLog b/SOPE/sope-gdl1/GDLContentStore/ChangeLog index bdd4c43b7..888196051 100644 --- a/SOPE/sope-gdl1/GDLContentStore/ChangeLog +++ b/SOPE/sope-gdl1/GDLContentStore/ChangeLog @@ -1,3 +1,8 @@ +2007-10-19 Wolfgang Sourdeau + + * GCSFolderManager.m ([GCSFolderManager -baseTableNameWithUID:]): + cast the time interval to an unsigned int. + 2007-08-29 Wolfgang Sourdeau * EOQualifier+GCS.m: rewrote comparison code, now uses UPPER instead of diff --git a/SOPE/sope-gdl1/GDLContentStore/GCSFolderManager.m b/SOPE/sope-gdl1/GDLContentStore/GCSFolderManager.m index 3526fd16b..bee84b5d1 100644 --- a/SOPE/sope-gdl1/GDLContentStore/GCSFolderManager.m +++ b/SOPE/sope-gdl1/GDLContentStore/GCSFolderManager.m @@ -642,7 +642,7 @@ static NSCharacterSet *asciiAlphaNumericCS = nil; } return [NSString stringWithFormat: @"%@%u", - newUID, [now timeIntervalSince1970]]; + newUID, (unsigned int) [now timeIntervalSince1970]]; } - (NSException *)createFolderOfType:(NSString *)_type