From: Kevin Day Date: Sat, 24 Jun 2023 20:21:59 +0000 (-0500) Subject: Cleanup: Add missing () in docuumentation comments for f_file_seek(). X-Git-Tag: 0.6.6~17 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=3101f0df15f589e63b16d41d0dce5d18548d07ba;p=fll Cleanup: Add missing () in docuumentation comments for f_file_seek(). --- diff --git a/level_0/f_file/c/file.h b/level_0/f_file/c/file.h index f9c938d..0316846 100644 --- a/level_0/f_file/c/file.h +++ b/level_0/f_file/c/file.h @@ -1858,7 +1858,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_failure (with error bit) on any other error. * - * @see lseek + * @see lseek() */ #ifndef _di_f_file_seek_ extern f_status_t f_file_seek(const int id, const int whence, const off_t offset, off_t * const seeked);