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

Unified Diff: src/platform/vboot_reference/crypto/Makefile

Issue 744002: Vboot Reference: Make length types explicitly sized. (Closed)
Patch Set: Created 10 years, 9 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: src/platform/vboot_reference/crypto/Makefile
diff --git a/src/platform/vboot_reference/crypto/Makefile b/src/platform/vboot_reference/crypto/Makefile
index 92b2689a38ec647b103d85803f9524be9beb9526..fd1e206320aa38ea27e4a6ec426fedcba3b369d5 100644
--- a/src/platform/vboot_reference/crypto/Makefile
+++ b/src/platform/vboot_reference/crypto/Makefile
@@ -14,7 +14,7 @@ padding.c: genpadding.sh
./genpadding.sh >$@
.c.o: $(OBJS)
- $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
+ $(CC) $(CFLAGS) -ansi $(INCLUDES) -c $< -o $@
clean:
rm -f $(OBJS) libcrypto.a

Powered by Google App Engine
This is Rietveld 408576698