Skip to content

Commit

Permalink
headers: normalize the spelling of some header guards
Browse files Browse the repository at this point in the history
Signed-off-by: Ramsay Jones <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
ramsay-jones authored and gitster committed Oct 18, 2018
1 parent a4b8ab5 commit 0009d35
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions alias.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef __ALIAS_H__
#define __ALIAS_H__
#ifndef ALIAS_H
#define ALIAS_H

struct string_list;

Expand Down
4 changes: 2 additions & 2 deletions commit-reach.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef __COMMIT_REACH_H__
#define __COMMIT_REACH_H__
#ifndef COMMIT_REACH_H
#define COMMIT_REACH_H

#include "commit-slab.h"

Expand Down
4 changes: 2 additions & 2 deletions fetch-negotiator.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef FETCH_NEGOTIATOR
#define FETCH_NEGOTIATOR
#ifndef FETCH_NEGOTIATOR_H
#define FETCH_NEGOTIATOR_H

struct commit;

Expand Down
4 changes: 2 additions & 2 deletions midx.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef __MIDX_H__
#define __MIDX_H__
#ifndef MIDX_H
#define MIDX_H

#include "repository.h"

Expand Down
4 changes: 2 additions & 2 deletions t/helper/test-tool.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef __TEST_TOOL_H__
#define __TEST_TOOL_H__
#ifndef TEST_TOOL_H
#define TEST_TOOL_H

#include "git-compat-util.h"

Expand Down
4 changes: 2 additions & 2 deletions vcs-svn/fast_export.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef FAST_EXPORT_H_
#define FAST_EXPORT_H_
#ifndef FAST_EXPORT_H
#define FAST_EXPORT_H

struct strbuf;
struct line_buffer;
Expand Down
4 changes: 2 additions & 2 deletions vcs-svn/line_buffer.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef LINE_BUFFER_H_
#define LINE_BUFFER_H_
#ifndef LINE_BUFFER_H
#define LINE_BUFFER_H

#include "strbuf.h"

Expand Down
4 changes: 2 additions & 2 deletions vcs-svn/sliding_window.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef SLIDING_WINDOW_H_
#define SLIDING_WINDOW_H_
#ifndef SLIDING_WINDOW_H
#define SLIDING_WINDOW_H

#include "strbuf.h"

Expand Down
4 changes: 2 additions & 2 deletions vcs-svn/svndiff.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef SVNDIFF_H_
#define SVNDIFF_H_
#ifndef SVNDIFF_H
#define SVNDIFF_H

struct line_buffer;
struct sliding_view;
Expand Down
4 changes: 2 additions & 2 deletions vcs-svn/svndump.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef SVNDUMP_H_
#define SVNDUMP_H_
#ifndef SVNDUMP_H
#define SVNDUMP_H

int svndump_init(const char *filename);
int svndump_init_fd(int in_fd, int back_fd);
Expand Down

0 comments on commit 0009d35

Please sign in to comment.