Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 63823
b: refs/heads/master
c: 6a0ed91
h: refs/heads/master
i:
  63821: e7bea9a
  63819: 2305c65
  63815: 8874f3a
  63807: e20f6fe
v: v3
  • Loading branch information
Artem Bityutskiy authored and Linus Torvalds committed Aug 9, 2007
1 parent 56f8ed2 commit 2893a6e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 660ca5317d229ca27dec6a3159423bc0c5291c2d
refs/heads/master: 6a0ed91e361a93ee1efb4c20c4967024ed2a8dd7
2 changes: 1 addition & 1 deletion trunk/include/linux/kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ extern void hex_dump_to_buffer(const void *buf, size_t len,
char *linebuf, size_t linebuflen, bool ascii);
extern void print_hex_dump(const char *level, const char *prefix_str,
int prefix_type, int rowsize, int groupsize,
void *buf, size_t len, bool ascii);
const void *buf, size_t len, bool ascii);
extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
void *buf, size_t len);
#define hex_asc(x) "0123456789abcdef"[x]
Expand Down
4 changes: 2 additions & 2 deletions trunk/lib/hexdump.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ EXPORT_SYMBOL(hex_dump_to_buffer);
*/
void print_hex_dump(const char *level, const char *prefix_str, int prefix_type,
int rowsize, int groupsize,
void *buf, size_t len, bool ascii)
const void *buf, size_t len, bool ascii)
{
u8 *ptr = buf;
const u8 *ptr = buf;
int i, linelen, remaining = len;
unsigned char linebuf[200];

Expand Down

0 comments on commit 2893a6e

Please sign in to comment.