summaryrefslogtreecommitdiffstats
path: root/mbbsd/record.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/record.c')
-rw-r--r--mbbsd/record.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mbbsd/record.c b/mbbsd/record.c
index 0a4e9255..e8b56500 100644
--- a/mbbsd/record.c
+++ b/mbbsd/record.c
@@ -81,6 +81,7 @@ int
get_record(const char *fpath, void *rptr, int size, int id)
{
int fd = -1;
+ /* TODO merge with get_records() */
if (id >= 1 && (fd = open(fpath, O_RDONLY, 0)) != -1) {
if (lseek(fd, (off_t) (size * (id - 1)), SEEK_SET) != -1) {