Fix bad header guard in version.h

The #define in version.h does not match the #ifndef in the line before
due to a typo in the suffix ("_F" instead of "_H"). Fix it, and while
we're at it, also remove the underscore at the beginning to avoid that
we're using an identifier here that is reserved by the C standard.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
This commit is contained in:
Thomas Huth 2021-05-27 12:05:37 +02:00 committed by Alexey Kardashevskiy
parent e25b1d6f49
commit 1768e27885
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@
* IBM Corporation - initial implementation
*****************************************************************************/
#ifndef _SLOF_VERSION_H
#define _SLOF_VERSION_F
#ifndef SLOF_VERSION_H
#define SLOF_VERSION_H
/* slof/version.S */
extern long print_version;