@@ -81,11 +81,11 @@ * @brief Sets the specified path to the specified integer. * * @param integer The integer to set * @param path The path to store the integer at */ -- (void)setInteger: (intmax_t)integer +- (void)setInteger: (long long)integer forPath: (OFString *)path; /*! * @brief Sets the specified path to the specified bool. * @@ -148,12 +148,12 @@ * * @param path The path for which the integer value should be returned * @param defaultValue The default value to return if the path does not exist * @return The integer value of the specified path */ -- (intmax_t)integerForPath: (OFString *)path - defaultValue: (intmax_t)defaultValue; +- (long long)integerForPath: (OFString *)path + defaultValue: (long long)defaultValue; /*! * @brief Returns the bool for the specified path, or the default value if the * path does not exist. *