forked from auracaster/openocd
- Fixes '>>' whitespace
- Replace ')\(>>\)\(\w\)' with ') \1 \2'.
- Replace '\(\w\)\(>>\)(' with '\1 \2 ('.
- Replace '\(\w\)\(>>\)\(\w\)' with '\1 \2 \3'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2369 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -34,10 +34,10 @@ static inline void buf_set_u32(uint8_t* buffer, unsigned int first, unsigned int
|
||||
{
|
||||
if ((num==32) && (first==0))
|
||||
{
|
||||
buffer[3]=(value>>24)&0xff;
|
||||
buffer[2]=(value>>16)&0xff;
|
||||
buffer[1]=(value>>8)&0xff;
|
||||
buffer[0]=(value>>0)&0xff;
|
||||
buffer[3]=(value >> 24)&0xff;
|
||||
buffer[2]=(value >> 16)&0xff;
|
||||
buffer[1]=(value >> 8)&0xff;
|
||||
buffer[0]=(value >> 0)&0xff;
|
||||
} else
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
Reference in New Issue
Block a user