Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. mdb-lookup.c: In function ‘main’:
  2. mdb-lookup.c:20:8: error: incompatible types when assigning to type ‘FILE’ from type ‘char *’
  3. mdb-lookup.c:25:6: warning: passing argument 2 of ‘addAfter’ makes pointer from integer without a cast [enabled by default]
  4. ../../lab3/part1/mylist.h:109:14: note: expected ‘struct Node *’ but argument is of type ‘char’
  5. mdb-lookup.c:25:6: warning: passing argument 3 of ‘addAfter’ makes pointer from integer without a cast [enabled by default]
  6. ../../lab3/part1/mylist.h:109:14: note: expected ‘void *’ but argument is of type ‘char’
  7. mdb-lookup.c:39:31: error: expected declaration specifiers or ‘...’ before ‘*’ token
  8. mdb-lookup.c:39:36: error: expected declaration specifiers or ‘...’ before numeric constant
  9. mdb-lookup.c:41:30: warning: initialization from incompatible pointer type [enabled by default]
  10. mdb-lookup.c:43:17: error: invalid operands to binary != (have ‘struct List’ and ‘int’)
  11. mdb-lookup.c:45:18: error: dereferencing pointer to incomplete type
  12. mdb-lookup.c:46:31: error: dereferencing pointer to incomplete type
  13. mdb-lookup.c:47:31: error: request for member ‘value’ in something not a structure or union
  14. mdb-lookup.c:50:30: error: dereferencing pointer to incomplete type
  15. make: *** [mdb-lookup.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement