Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compilation errors on debian wheezy/sid. #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions ext/raspell.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static void aspell_free(void *p) {
*/
static void check_for_error(AspellSpeller * speller) {
if (aspell_speller_error(speller) != 0) {
rb_raise(cAspellError, aspell_speller_error_message(speller));
rb_raise(cAspellError, "%s", aspell_speller_error_message(speller));
}
}

Expand All @@ -87,11 +87,11 @@ static void check_for_error(AspellSpeller * speller) {
static void set_option(AspellConfig *config, char *key, char *value) {
//printf("set option: %s = %s\n", key, value);
if (aspell_config_replace(config, key, value) == 0) {
rb_raise(cAspellError, aspell_config_error_message(config));
rb_raise(cAspellError, "%s", aspell_config_error_message(config));
}
//check config:
if (aspell_config_error(config) != 0) {
rb_raise(cAspellError, aspell_config_error_message(config));
rb_raise(cAspellError, "%s", aspell_config_error_message(config));
}
}

Expand Down Expand Up @@ -132,7 +132,7 @@ static AspellDocumentChecker* get_checker(AspellSpeller *speller) {
AspellDocumentChecker * checker;
ret = new_aspell_document_checker(speller);
if (aspell_error(ret) != 0)
rb_raise(cAspellError, aspell_error_message(ret));
rb_raise(cAspellError, "%s", aspell_error_message(ret));
checker = to_aspell_document_checker(ret);
return checker;
}
Expand Down Expand Up @@ -214,7 +214,7 @@ static VALUE aspell_s_new(int argc, VALUE *argv, VALUE klass) {
if (aspell_error(ret) != 0) {
tmp = strdup(aspell_error_message(ret));
delete_aspell_can_have_error(ret);
rb_raise(cAspellError, tmp);
rb_raise(cAspellError, "%s", tmp);
}

speller = to_aspell_speller(ret);
Expand Down Expand Up @@ -253,7 +253,7 @@ static VALUE aspell_s_new1(VALUE klass, VALUE options) {
if (aspell_error(ret) != 0) {
const char *tmp = strdup(aspell_error_message(ret));
delete_aspell_can_have_error(ret);
rb_raise(cAspellError, tmp);
rb_raise(cAspellError, "%s", tmp);
}

speller = to_aspell_speller(ret);
Expand Down Expand Up @@ -409,7 +409,7 @@ static VALUE aspell_conf_retrieve(VALUE self, VALUE key) {
AspellConfig *config = aspell_speller_config(speller);
VALUE result = rb_str_new2(aspell_config_retrieve(config, StringValuePtr(key)));
if (aspell_config_error(config) != 0) {
rb_raise(cAspellError, aspell_config_error_message(config));
rb_raise(cAspellError, "%s", aspell_config_error_message(config));
}
return result;
}
Expand All @@ -433,7 +433,7 @@ static VALUE aspell_conf_retrieve_list(VALUE self, VALUE key) {
if (aspell_config_error(config) != 0) {
char *tmp = strdup(aspell_config_error_message(config));
delete_aspell_string_list(list);
rb_raise( cAspellError, tmp);
rb_raise( cAspellError, "%s", tmp);
}

//iterate over list
Expand Down Expand Up @@ -480,7 +480,7 @@ static VALUE aspell_check(VALUE self, VALUE word) {
else if (code == 0)
result = Qfalse;
else
rb_raise( cAspellError, aspell_speller_error_message(speller));
rb_raise( cAspellError, "%s", aspell_speller_error_message(speller));
return result;
}

Expand Down