[Lldb-commits] [lldb] r107829 - /lldb/trunk/test/order/main.c

Johnny Chen johnny.chen at apple.com
Wed Jul 7 15:49:43 PDT 2010


Author: johnny
Date: Wed Jul  7 17:49:43 2010
New Revision: 107829

URL: http://llvm.org/viewvc/llvm-project?rev=107829&view=rev
Log:
Fixed typos in the comments.

Modified:
    lldb/trunk/test/order/main.c

Modified: lldb/trunk/test/order/main.c
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/order/main.c?rev=107829&r1=107828&r2=107829&view=diff
==============================================================================
--- lldb/trunk/test/order/main.c (original)
+++ lldb/trunk/test/order/main.c Wed Jul  7 17:49:43 2010
@@ -14,7 +14,7 @@
 int f3 (char *s);
 
 
-// We want f1 to start on line 10
+// We want f1 to start on line 20
 int f1 (char *s)
 {
     return printf("f1: %s\n", s);
@@ -24,7 +24,7 @@
 
 
 
-// We want f2 to start on line 20
+// We want f2 to start on line 30
 int f2 (char *s)
 {
     return printf("f2: %s\n", s);
@@ -34,7 +34,7 @@
 
 
 
-// We want f3 to start on line 30
+// We want f3 to start on line 40
 int f3 (char *s)
 {
     return printf("f3: %s\n", s);
@@ -44,7 +44,7 @@
 
 
 
-// We want main to start on line 40
+// We want main to start on line 50
 int main (int argc, const char * argv[])
 {
     f1("carp");





More information about the lldb-commits mailing list