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.
Kuzu version
v0.11.3.16
What operating system are you using?
Fedora 41, x86_64
What happened?
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:
The
%lldshould be%ld.Perhaps this is platform specific and you can't win with the online example.
gccon x86_64 complains about it with -Wall. Also, the example code should includestdlib(for the call tofree) as well asstdio, while we're at it.Are there known steps to reproduce?
No response