diff options
author | Robin Krahl <me@robin-krahl.de> | 2016-06-10 14:20:36 +0200 |
---|---|---|
committer | Robin Krahl <me@robin-krahl.de> | 2016-06-10 14:20:36 +0200 |
commit | 7e1c9abe13f38bf5a3ce32e6b8b6842c1f80bcda (patch) | |
tree | 80e2de50df47389c0bd17a5e323f13ba96db6d59 /man | |
parent | 635ecce5990cc763160bb7e89b9291f09d06afc5 (diff) | |
download | dbfp-7e1c9abe13f38bf5a3ce32e6b8b6842c1f80bcda.tar.gz dbfp-7e1c9abe13f38bf5a3ce32e6b8b6842c1f80bcda.tar.bz2 |
dbfp_query_location.3: update
Diffstat (limited to 'man')
-rw-r--r-- | man/dbfp_query_location.3 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/man/dbfp_query_location.3 b/man/dbfp_query_location.3 index b620283..5be7bdb 100644 --- a/man/dbfp_query_location.3 +++ b/man/dbfp_query_location.3 @@ -202,10 +202,11 @@ if an error occurs during the parsing of the \s-1XML\s0 response if the \s-1API\s0 response has not the expected structure .SH "EXAMPLE" .IX Header "EXAMPLE" -.Vb 3 +.Vb 4 \& #include <dbfp.h> \& #include <stdio.h> \& #include <stdlib.h> +\& #include <string.h> \& \& int main(int argc, char **argv) \& { @@ -229,6 +230,8 @@ if the \s-1API\s0 response has not the expected structure \& locations[i].lat); \& \& cleanup: +\& if (err) +\& printf("An error occured: %s\en", strerror(err)); \& for (i = 0; i < n; i++) \& dbfp_location_close(&locations[i]); \& free(locations); |