Important update: Arm Announces End of Life Timeline for Mbed. This site will be archived in July 2026. Read the full announcement.
Compiler Error 165
Table of Contents
Too few arguments in function call¶
Function prototype is defined with X number of parameters and does not match the number of parameters passed in the function call.
For example:
extern void foo(int x); void bar(void) { foo(); }
Gives:
- 165: too few arguments in function call