Skip to content

Commit 0009d35

Browse files
ramsay-jonesgitster
authored andcommitted
headers: normalize the spelling of some header guards
Signed-off-by: Ramsay Jones <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a4b8ab5 commit 0009d35

10 files changed

+20
-20
lines changed

alias.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ALIAS_H__
2-
#define __ALIAS_H__
1+
#ifndef ALIAS_H
2+
#define ALIAS_H
33

44
struct string_list;
55

commit-reach.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __COMMIT_REACH_H__
2-
#define __COMMIT_REACH_H__
1+
#ifndef COMMIT_REACH_H
2+
#define COMMIT_REACH_H
33

44
#include "commit-slab.h"
55

fetch-negotiator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef FETCH_NEGOTIATOR
2-
#define FETCH_NEGOTIATOR
1+
#ifndef FETCH_NEGOTIATOR_H
2+
#define FETCH_NEGOTIATOR_H
33

44
struct commit;
55

midx.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __MIDX_H__
2-
#define __MIDX_H__
1+
#ifndef MIDX_H
2+
#define MIDX_H
33

44
#include "repository.h"
55

t/helper/test-tool.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __TEST_TOOL_H__
2-
#define __TEST_TOOL_H__
1+
#ifndef TEST_TOOL_H
2+
#define TEST_TOOL_H
33

44
#include "git-compat-util.h"
55

vcs-svn/fast_export.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef FAST_EXPORT_H_
2-
#define FAST_EXPORT_H_
1+
#ifndef FAST_EXPORT_H
2+
#define FAST_EXPORT_H
33

44
struct strbuf;
55
struct line_buffer;

vcs-svn/line_buffer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef LINE_BUFFER_H_
2-
#define LINE_BUFFER_H_
1+
#ifndef LINE_BUFFER_H
2+
#define LINE_BUFFER_H
33

44
#include "strbuf.h"
55

vcs-svn/sliding_window.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef SLIDING_WINDOW_H_
2-
#define SLIDING_WINDOW_H_
1+
#ifndef SLIDING_WINDOW_H
2+
#define SLIDING_WINDOW_H
33

44
#include "strbuf.h"
55

vcs-svn/svndiff.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef SVNDIFF_H_
2-
#define SVNDIFF_H_
1+
#ifndef SVNDIFF_H
2+
#define SVNDIFF_H
33

44
struct line_buffer;
55
struct sliding_view;

vcs-svn/svndump.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef SVNDUMP_H_
2-
#define SVNDUMP_H_
1+
#ifndef SVNDUMP_H
2+
#define SVNDUMP_H
33

44
int svndump_init(const char *filename);
55
int svndump_init_fd(int in_fd, int back_fd);

0 commit comments

Comments
 (0)