We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a439d7c commit c3bfac2Copy full SHA for c3bfac2
1 file changed
include/LAGraph.h
@@ -859,7 +859,7 @@ LAGRAPH_PUBLIC extern GrB_Semiring
859
*
860
* @param[out] version_number an array of size 3; with the major, minor,
861
* and update versions of LAGraph, in that order.
862
- * @param[out] version_date an array of size >= LAGraph_MSG_LEN, returned
+ * @param[out] version_date an array of size LAGraph_MSG_LEN, returned
863
* with the date of this version of LAGraph.
864
* @param[in,out] msg any error messages.
865
@@ -872,7 +872,7 @@ int LAGraph_Version
872
(
873
// output:
874
int version_number [3], // user-provided array of size 3
875
- char *version_date, // user-provided array of size >= LAGRAPH_MSG_LEN
+ char version_date[LAGRAPH_MSG_LEN], // user-provided array of size LAGRAPH_MSG_LEN
876
char *msg
877
) ;
878
0 commit comments