diff options
author | Patrick Lam <plam@MIT.EDU> | 2006-03-03 06:35:53 +0000 |
---|---|---|
committer | Patrick Lam <plam@MIT.EDU> | 2006-03-03 06:35:53 +0000 |
commit | bb6b19938e2c9d115abd4f36439c365b63713bb1 (patch) | |
tree | 9aaf735c779cc8383fa8f2363454e7ea84eb9872 /src/fcfs.c | |
parent | 5b4a40a955c9607e80a8da5a42a0da5923e3c509 (diff) |
Get rid of C++-style comments.
Diffstat (limited to 'src/fcfs.c')
-rw-r--r-- | src/fcfs.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -123,12 +123,12 @@ FcFontSetDistributeBytes (FcCache * metadata, void * block_ptr) block_ptr = ALIGN (block_ptr, int); fcfs_pat_count = (int *)block_ptr; block_ptr = (int *)block_ptr + 1; - // we don't consume any bytes for the fontset itself, - // since we don't allocate it statically. + /* we don't consume any bytes for the fontset itself, */ + /* since we don't allocate it statically. */ block_ptr = FcPatternDistributeBytes (metadata, block_ptr); - // for good measure, write out the object ids used for - // this bank to the file. + /* for good measure, write out the object ids used for */ + /* this bank to the file. */ return FcObjectDistributeBytes (metadata, block_ptr); } |