This is the line of code:

bool cpfs_utimens(struct Cpfs *, char const *path, struct timespec const[2]);

Running splint 3.1.2 generates this warning:

cpfs.h:21:74: Function parameter times declared as manifest array (size
                 constant is meaningless)
  A formal parameter is declared as an array with size.  The size of the array
  is ignored in this context, since the array formal parameter is treated as a
  pointer. (Use -fixedformalarray to inhibit warning)

Naming the parameter makes no difference.

link|improve this question

78% accept rate
feedback

2 Answers

up vote 4 down vote accepted

It means that when you declare the parameter struct timespec const[2], the 2 between the [ and ] is not required. Changing your code to:

bool cpfs_utimens(struct Cpfs *, char const *path, struct timespec const[]);

In C/C++, you cannot ask for an array of a certain size as a parameter, because the array is treated like a pointer and pointers don't have sizes.

link|improve this answer
1  
no, any array is passed as a pointer to its first entry. – Alexander Rafferty Sep 7 '10 at 3:43
1  
If you wanted to pass by value, you could wrap it in a struct. – Jack Kelly Sep 7 '10 at 3:44
1  
@Matt: See e.g. the C FAQ. You also can't return arrays by value either. – Georg Fritzsche Sep 7 '10 at 4:04
1  
@Matt: Declaring a function with a return type that is an array type is illegal - and even if it weren't, you could never successfully pass an array to return, since it would always decay to a pointer to its first element. – caf Sep 7 '10 at 4:57
2  
@Jack Kelly re apostrophe nit... since you ask, the SO approach to this kind of nit is (to borrow a phrase from a famous wiki) be bold and just go fix it, if you have enough rep to edit it. If not, patience will usually produce a user with enough rep who will fix it. That way, most of the broken windows get fixed without a lot of fuss about it. – RBerteig Sep 7 '10 at 6:57
show 6 more comments
feedback

In C99 (since you use bool) you have the possibility to require a minimum length of a parameter array by adding static like this

bool cpfs_utimens(struct Cpfs *, char const *path, struct timespec const[static 2]);

the signature (if there is such a thing in C) is still that of a pointer parameter, thought.

(And also I don't know of any existing compiler that does something sensible from that information, yet.)

link|improve this answer
Useful, I wonder if anyone uses or implements this. – Matt Joiner Sep 8 '10 at 12:08
@Matt Joiner: at least gcc implements the syntactical part ;-) the real test for that is difficult to implement, I imagine. You'd either have to handle some sort of invariant (is larger than) on pointers or strictly restrict to array objects of the correct size. – Jens Gustedt Sep 8 '10 at 12:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.