51Testing软件测试论坛

标题: Action.c (57): syntax error; found `{' expecting `;为何总报错 [打印本页]

作者: lelebachelor    时间: 2009-12-24 18:00
标题: Action.c (57): syntax error; found `{' expecting `;为何总报错
copyC中的函数到Vuser中后,调试报以下错:
Action.c (57): syntax error; found `{' expecting `;'
可语法上没看到有错。
报错代码:
void byteReverse(unsigned char *buf, unsigned longs)
{
        uint32 t;
        do {
                t = (uint32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
                    ((unsigned) buf[1] << 8 | buf[0]);
                *(uint32 *) buf = t;
                buf += 4;
        } while (--longs);
}

熟悉的高手帮分析下,最近突然要使用LR,对这块不熟。
作者: msnshow    时间: 2009-12-24 21:02
c函数不能直接使用的
作者: lelebachelor    时间: 2009-12-25 15:17
标题: 回复 2# 的帖子
问题已解决
作者: maliya1314    时间: 2011-12-12 15:04
回复 3# lelebachelor


   楼上的问题是怎么解决的?
作者: pengjintao    时间: 2012-7-18 10:56
某个地方多了一个分号“;”,去掉应该就可以了。




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2