More trailing whilespace removal

This commit is contained in:
Gregory Nutt 2014-04-13 16:24:28 -06:00
parent 7d961b6c93
commit b9cf7acb1a
285 changed files with 769 additions and 769 deletions

View file

@ -62,7 +62,7 @@ ROOTDEPPATH = --dep-path .
# Common build
VPATH =
VPATH =
all: .built
.PHONY: headers clean depend distclean

View file

@ -56,7 +56,7 @@ $(foreach DIR, $(SUBDIRS), $(eval $(call DIR_template,$(DIR),build, all)))
$(foreach DIR, $(SUBDIRS), $(eval $(call DIR_template,$(DIR),clean,clean)))
$(foreach DIR, $(SUBDIRS), $(eval $(call DIR_template,$(DIR),install,install)))
# Build program(s) in each sud-directory
# Build program(s) in each sud-directory
build: $(foreach DIR, $(SUBDIRS), $(DIR)_build)

View file

@ -69,7 +69,7 @@ $(BIN): $(BIN).r2
@echo "LD: $<"
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
clean:
clean:
$(call DELFILE, $(BIN))
$(call DELFILE, $(R2SRC))
$(call DELFILE, *.r1)

View file

@ -70,7 +70,7 @@ int main(int argc, char *argv[])
"</div>\r\n"
"<div class=\"contentblock\">\r\n");
printf(
"<h2>Hello, World!</h2><p>Requested by: %s</p>\r\n",
"<h2>Hello, World!</h2><p>Requested by: %s</p>\r\n",
getenv("REMOTE_ADDR"));
puts(
"</body>\r\n"

View file

@ -2,7 +2,7 @@
<html>
<head>
<title>NuttX examples/thttpd</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body bgcolor="#fffeec" text="black">

View file

@ -69,7 +69,7 @@ $(BIN): $(BIN).r2
@echo "LD: $<"
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
clean:
clean:
$(call DELFILE, $(BIN))
$(call DELFILE, $(R2SRC))
$(call DELFILE, *.r1)

View file

@ -1,10 +1,10 @@
h1
h1
{
text-align: center;
font-size:14pt;
font-family:arial,helvetica;
font-weight:bold;
padding:10px;
padding:10px;
}
body
@ -24,7 +24,7 @@ body
background-color: #fffcd2;
text-align:left;
font-size:9pt;
font-family:arial,helvetica;
font-family:arial,helvetica;
}
div.menubox
@ -36,14 +36,14 @@ div.menubox
}
.contentblock
{
{
margin: 4px;
width:60%;
padding:2px;
border: 1px dotted;
background-color: white;
font-size:8pt;
font-family:arial,helvetica;
font-family:arial,helvetica;
}
p.intro
@ -51,20 +51,20 @@ p.intro
margin-left:20px;
margin-right:20px;
font-size:10pt;
font-family:arial,helvetica;
font-family:arial,helvetica;
}
p.clink
{
font-size:12pt;
font-family:courier,monospace;
font-family:courier,monospace;
text-align:center;
}
p.clink9
{
font-size:9pt;
font-family:courier,monospace;
font-family:courier,monospace;
text-align:center;
}
@ -75,6 +75,6 @@ p
p.right
{
text-align:right;
text-align:right;
}

View file

@ -69,7 +69,7 @@ $(BIN): $(BIN).r2
@echo "LD: $<"
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
clean:
clean:
$(call DELFILE, $(BIN))
$(call DELFILE, $(R2SRC))
$(call DELFILE, *.r1)

View file

@ -64,15 +64,15 @@ static const char *g_statenames[] =
{
"INVALID ",
"PENDING ",
"READY ",
"RUNNING ",
"INACTIVE",
"WAITSEM ",
"READY ",
"RUNNING ",
"INACTIVE",
"WAITSEM ",
#ifndef CONFIG_DISABLE_MQUEUE
"WAITSIG ",
"WAITSIG ",
#endif
#ifndef CONFIG_DISABLE_MQUEUE
"MQNEMPTY",
"MQNEMPTY",
"MQNFULL "
#endif
};