# hx\_AddVarArg

## Description

Add an argument of a variadic call.

It is impossible to detect the correct number of variadic arguments in all cases, so the decompiler may detect too few arguments. This command allows you to correct such cases by increasing the number of arguments.

It is available only when the cursor is located on a call to a variadic function (like `printf`). The decompiler automatically detects the argument locations, the user can only increase or decrease their number.

**Hotkeys**:

* <kbd>Numpad+ Add variadic argument</kbd>

This command is useful if the decompiler determines the number of arguments incorrectly.

For example:

```
        printf("This is a test call: %d\n");
```

apparently lacks an argument. Pressing <kbd>Numpad+ modifies it:</kbd>

```
        printf("This is a test call: %d\n", v1);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hex-rays.com/ida-actions/hx_addvararg.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
