aboutsummaryrefslogtreecommitdiff
path: root/test/lang/c
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-09-15 17:36:17 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-09-15 17:36:17 +0000
commit3823c841e3639d68505887f5b12914183cf3cc86 (patch)
tree200c39f3516b53d8da2426413a56f8c892c793bf /test/lang/c
parenta1cb0f4caeabf20906c5fce4150dbe04c0ac29ef (diff)
downloadlldb-3823c841e3639d68505887f5b12914183cf3cc86.tar.gz
Fixed indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@139802 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lang/c')
-rw-r--r--test/lang/c/global_variables/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lang/c/global_variables/main.c b/test/lang/c/global_variables/main.c
index 5b733360a..880a8ed26 100644
--- a/test/lang/c/global_variables/main.c
+++ b/test/lang/c/global_variables/main.c
@@ -15,7 +15,7 @@ static const char *g_file_static_cstr = "g_file_static_cstr";
extern int g_a;
int main (int argc, char const *argv[])
{
- static const char *g_func_static_cstr = "g_func_static_cstr";
- printf ("%s %s\n", g_file_global_cstr, g_file_static_cstr);
+ static const char *g_func_static_cstr = "g_func_static_cstr";
+ printf ("%s %s\n", g_file_global_cstr, g_file_static_cstr);
return g_file_global_int + g_a; // Set break point at this line. //// break $source:$line; continue; var -global g_a -global g_global_int
}