From 821be24331d22d86859aec41fa6e2151a7688e97 Mon Sep 17 00:00:00 2001 From: Gene Stark Date: Thu, 27 Jan 2022 15:26:07 -0500 Subject: [PATCH] Correct issue with @return specification for argo_read_value(). --- hw1/src/argo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw1/src/argo.c b/hw1/src/argo.c index 0809a8d..19ca524 100644 --- a/hw1/src/argo.c +++ b/hw1/src/argo.c @@ -23,8 +23,8 @@ * and a NULL pointer value is returned. * * @param f Input stream from which JSON is to be read. - * @return Zero if the operation is completely successful, - * nonzero if there is any error. + * @return A valid pointer if the operation is completely successful, + * NULL if there is any error. */ ARGO_VALUE *argo_read_value(FILE *f) { // TO BE IMPLEMENTED.