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
{{ message }}
This repository was archived by the owner on Oct 10, 2025. It is now read-only.
In the C API example from https://docs.kuzudb.com/get-started/ the call to printf appears to be using the wrong directive
for the in64 'since' value:
printf("%s follows %s since %lld \n", name, name2, since);
The %lld should be %ld.
Perhaps this is platform specific and you can't win with the online example. gcc on x86_64 complains about it with -Wall. Also, the example code should include stdlib (for the call to free) as well as stdio, while we're at it.