summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2010-02-20 21:43:18 +0000
committerMatthias Melcher <fltk@matthiasm.com>2010-02-20 21:43:18 +0000
commit7b74a91bfd2df7abc00d2b1454af3d01118fff89 (patch)
tree02aec56c6e453473402d9f85ef61bd9c4f369146 /fluid
parentb5ea344b9525605155ed61ebb3f2e5da6c4197f2 (diff)
Fixing some indentation
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7119 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/code.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/fluid/code.cxx b/fluid/code.cxx
index a96bbd720..24cea697b 100644
--- a/fluid/code.cxx
+++ b/fluid/code.cxx
@@ -235,17 +235,17 @@ void write_cdata(const char *s, int length) {
varused = 1;
return;
}
- if (write_sourceview) {
- if (length>=0)
- fprintf(code_file, "{ /* ... %d bytes of binary data... */ }", length);
- else
- fprintf(code_file, "{ /* ... binary data... */ }");
- return;
- }
- if (length==-1) {
- fprintf(code_file, "{ /* ... undefined size binary data... */ }");
- return;
- }
+ if (write_sourceview) {
+ if (length>=0)
+ fprintf(code_file, "{ /* ... %d bytes of binary data... */ }", length);
+ else
+ fprintf(code_file, "{ /* ... binary data... */ }");
+ return;
+ }
+ if (length==-1) {
+ fprintf(code_file, "{ /* ... undefined size binary data... */ }");
+ return;
+ }
const unsigned char *w = (const unsigned char *)s;
const unsigned char *e = w+length;
int linelength = 1;