You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
json_api_mapper.c:58:3: error: non-void function 'json_api_get_string' should return a value
[-Wreturn-type]
return;
^
json_api_mapper.c:77:3: error: non-void function 'json_api_get_int' should return a value [-Wreturn-type]
return;
^
json_api_mapper.c:96:3: error: non-void function 'json_api_get_bool' should return a value [-Wreturn-type]
return;
^
3 errors generated.
Changing it to "return NULL;" does make liferea compile.
The text was updated successfully, but these errors were encountered:
json_api_mapper.c:58:3: error: non-void function 'json_api_get_string' should return a value
[-Wreturn-type]
return;
^
json_api_mapper.c:77:3: error: non-void function 'json_api_get_int' should return a value [-Wreturn-type]
return;
^
json_api_mapper.c:96:3: error: non-void function 'json_api_get_bool' should return a value [-Wreturn-type]
return;
^
3 errors generated.
Changing it to "return NULL;" does make liferea compile.
The text was updated successfully, but these errors were encountered: