https://git.reactos.org/?p=reactos.git;a=commitdiff;h=1c65a5e68a85c7be2ca820520d6e0dc0c0cefe69

commit 1c65a5e68a85c7be2ca820520d6e0dc0c0cefe69
Author:     Serge Gautherie <[email protected]>
AuthorDate: Thu Aug 27 18:50:39 2020 +0200
Commit:     Stanislav Motylkov <[email protected]>
CommitDate: Sun Aug 30 02:00:57 2020 +0300

    [REGEXPL] Fix 'COMLPETION_H__INCLUDED_' typo
    
    clang-cl 10:
    '.../Completion.h(4,2): warning: 'COMLPETION_H__INCLUDED_' is used as a 
header guard here, followed by #define of a different macro [-Wheader-guard]'
    
    Addendum to bf1b057 (r1507).
    CORE-14306
---
 modules/rosapps/applications/sysutils/regexpl/Completion.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/rosapps/applications/sysutils/regexpl/Completion.h 
b/modules/rosapps/applications/sysutils/regexpl/Completion.h
index 8df3026591e..4d056bfec14 100644
--- a/modules/rosapps/applications/sysutils/regexpl/Completion.h
+++ b/modules/rosapps/applications/sysutils/regexpl/Completion.h
@@ -1,7 +1,7 @@
 //
 // Completion.h - declaration for completion related functions
 
-#if !defined(COMLPETION_H__INCLUDED_)
+#if !defined(COMPLETION_H__INCLUDED_)
 #define COMPLETION_H__INCLUDED_
 
 typedef const TCHAR * (*ReplaceCompletionCallback)(unsigned __int64& rnIndex, 
const BOOL *pblnForward,

Reply via email to