Skip to content

Commit c6dbaa6

Browse files
committed
Code format
1 parent feccb44 commit c6dbaa6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

httplib.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,11 @@ using ssize_t = long;
149149
#endif // _MSC_VER
150150

151151
#ifndef S_ISREG
152-
#define S_ISREG(m) (((m)&S_IFREG) == S_IFREG)
152+
#define S_ISREG(m) (((m) & S_IFREG) == S_IFREG)
153153
#endif // S_ISREG
154154

155155
#ifndef S_ISDIR
156-
#define S_ISDIR(m) (((m)&S_IFDIR) == S_IFDIR)
156+
#define S_ISDIR(m) (((m) & S_IFDIR) == S_IFDIR)
157157
#endif // S_ISDIR
158158

159159
#ifndef NOMINMAX

0 commit comments

Comments
 (0)