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

In file included from nfc-utils.c:35:0: expected «const struct nfc_target *» but argument is of type «nfc_target» #3

Closed
GoogleCodeExporter opened this issue Mar 14, 2015 · 1 comment

Comments

@GoogleCodeExporter
Copy link

diff --git a/src/nfc-utils.c b/src/nfc-utils.c
index deb51e7..0a34b0e 100644
--- a/src/nfc-utils.c
+++ b/src/nfc-utils.c
@@ -118,7 +118,7 @@ void
 print_nfc_target(const nfc_target nt, bool verbose)
 {
   char *s;
-  str_nfc_target(&s, nt, verbose);
+  str_nfc_target(&s, &nt, verbose);
   printf("%s", s);
   free(s);
 }

Original issue reported on code.google.com by [email protected] on 29 Mar 2013 at 3:26

@GoogleCodeExporter
Copy link
Author

Thanks, this issue is now fixed (re5024608f39766348f9b06bf460e0ce2c7c83d92)

Original comment by [email protected] on 4 Apr 2013 at 10:03

  • Changed state: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant