Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Unified Diff: fusl/include/arpa/tftp.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/include/arpa/tftp.h
diff --git a/fusl/include/arpa/tftp.h b/fusl/include/arpa/tftp.h
index 799c54f2217e0671ea1c676fbfe50ed6304d7dbb..12add70e023b44593951f5e098b3d039b0b5d702 100644
--- a/fusl/include/arpa/tftp.h
+++ b/fusl/include/arpa/tftp.h
@@ -7,13 +7,13 @@
#define ACK 04
#define ERROR 05
struct tftphdr {
- short th_opcode;
- union {
- unsigned short tu_block;
- short tu_code;
- char tu_stuff[1];
- } th_u;
- char th_data[1];
+ short th_opcode;
+ union {
+ unsigned short tu_block;
+ short tu_code;
+ char tu_stuff[1];
+ } th_u;
+ char th_data[1];
};
#define th_block th_u.tu_block
#define th_code th_u.tu_code
@@ -28,4 +28,3 @@ struct tftphdr {
#define EEXISTS 6
#define ENOUSER 7
#endif
-

Powered by Google App Engine
This is Rietveld 408576698