diff options
Diffstat (limited to 'autotests/kconfig_compiler/test12main.cpp')
-rw-r--r-- | autotests/kconfig_compiler/test12main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autotests/kconfig_compiler/test12main.cpp b/autotests/kconfig_compiler/test12main.cpp index b8a05294..9c049f1b 100644 --- a/autotests/kconfig_compiler/test12main.cpp +++ b/autotests/kconfig_compiler/test12main.cpp @@ -20,9 +20,9 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "test12.h" -int main( int, char** ) +int main(int, char **) { - Test12 *t = new Test12(); - delete t; - return 0; + Test12 *t = new Test12(); + delete t; + return 0; } |