Fixed cocoa pod lint warnings.

This commit is contained in:
John McNamara 2015-09-27 21:01:50 +01:00
parent 712c49b3c2
commit b21d5a7632
8 changed files with 22 additions and 19 deletions

View File

@ -45,8 +45,8 @@ typedef struct lxw_app {
struct lxw_part_names *part_names;
lxw_doc_properties *properties;
size_t num_heading_pairs;
size_t num_part_names;
uint32_t num_heading_pairs;
uint32_t num_part_names;
} lxw_app;

View File

@ -23,9 +23,9 @@ SLIST_HEAD(lxw_hash_bucket_list, lxw_hash_element);
/* LXW_HASH hash table struct. */
typedef struct lxw_hash_table {
size_t num_buckets;
size_t used_buckets;
size_t unique_count;
uint32_t num_buckets;
uint32_t used_buckets;
uint32_t unique_count;
uint8_t free_key;
uint8_t free_value;
@ -59,7 +59,7 @@ lxw_hash_element *_hash_key_exists(lxw_hash_table *lxw_hash, void *key,
size_t key_len);
lxw_hash_element *_insert_hash_element(lxw_hash_table *lxw_hash, void *key,
void *value, size_t key_len);
lxw_hash_table *_new_lxw_hash(size_t num_buckets, uint8_t free_key,
lxw_hash_table *_new_lxw_hash(uint32_t num_buckets, uint8_t free_key,
uint8_t free_value);
void _free_lxw_hash(lxw_hash_table *lxw_hash);

View File

@ -34,7 +34,7 @@ struct sst_bucket_list {
* track the insertion order in a separate list.
*/
struct sst_element {
size_t index;
uint32_t index;
char *string;
STAILQ_ENTRY (sst_element) sst_order_pointers;
@ -47,10 +47,10 @@ struct sst_element {
typedef struct lxw_sst {
FILE *file;
size_t num_buckets;
size_t used_buckets;
size_t string_count;
size_t unique_count;
uint32_t num_buckets;
uint32_t used_buckets;
uint32_t string_count;
uint32_t unique_count;
struct sst_order_list *order_list;
struct sst_bucket_list **buckets;

View File

@ -3,6 +3,7 @@ Pod::Spec.new do |s|
s.version = "0.1.5"
s.summary = "A C library for creating Excel XLSX files."
s.platform = :ios
s.platform = :osx
s.description = <<-DESC
Libxlsxwriter is a C library that can be used to write text, numbers, formulas and hyperlinks to multiple worksheets in an Excel 2007+ XLSX file.
@ -23,13 +24,13 @@ Pod::Spec.new do |s|
* The only dependency is on zlib
DESC
s.homepage = "http://libxlsxwriter.github.io"
s.homepage = "http://github.com/jmcnamara/libxlsxwriter"
s.documentation_url = "http://libxlsxwriter.github.io"
s.license = "FreeBSD"
s.author = { "John McNamara" => "jmcnamara@cpan.org" }
s.source = { :git => "https://github.com/jmcnamara/libxlsxwriter.git", :commit => "818c7fa0e103c60750916bffe270c4708b6d90c0" }
s.source_files = "src/**/*.{h,c}", "third_party/**/{zip.c,ioapi.c}", "include/**/*.h"
s.source = { :git => "https://github.com/jmcnamara/libxlsxwriter.git", :tag => "RELEASE_0.1.5" }
s.source_files = "src/**/*.c", "third_party/**/{zip.c,ioapi.c}", "include/**/*.h"
s.header_dir = "xlsxwriter"
s.header_mappings_dir = "include/xlsxwriter"

View File

@ -156,7 +156,7 @@ mem_error2:
* Create a new LXW_HASH hash table object.
*/
lxw_hash_table *
_new_lxw_hash(size_t num_buckets, uint8_t free_key, uint8_t free_value)
_new_lxw_hash(uint32_t num_buckets, uint8_t free_key, uint8_t free_value)
{
/* Create the new hash table. */
lxw_hash_table *lxw_hash = calloc(1, sizeof(lxw_hash_table));

View File

@ -475,7 +475,9 @@ _add_file_to_zip(lxw_packager *self, FILE * file, const char *filename)
}
}
error = zipWriteInFileInZip(self->zipfile, self->buffer, size_read);
error = zipWriteInFileInZip(self->zipfile,
self->buffer, (unsigned int) size_read);
if (error < 0) {
ERROR("Error in writing member in the zipfile");
return error;

View File

@ -182,7 +182,7 @@ _escape_attributes(struct xml_attribute *attribute)
char *
_escape_data(const char *data)
{
int encoded_len = (strlen(data) * 5 + 1);
size_t encoded_len = (strlen(data) * 5 + 1);
char *encoded = (char *) calloc(encoded_len, 1);
char *p_encoded = encoded;

View File

@ -1067,7 +1067,7 @@ extern int ZEXPORT zipOpenNewFileInZip4_64 (zipFile file, const char* filename,
int err = ZIP_OK;
# ifdef NOCRYPT
(crcForCrypting);
(void)(crcForCrypting);
if (password != NULL)
return ZIP_PARAMERROR;
# endif