Skip to content

Commit f5d3697

Browse files
committed
xhyve: remove uuid comment
Signed-off-by: Koichi Shiraishi <zchee.io@gmail.com>
1 parent ee34ff6 commit f5d3697

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

xhyve/uuid.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,14 @@ package xhyve
77
char uuid_str[37];
88
99
extern inline char* uuidgen() {
10-
// typedef unsigned char uuid_t;
1110
uuid_t uuid;
1211
13-
// generate
12+
// generate with random
1413
uuid_generate_random(uuid);
1514
1615
// unparse (to string)
1716
uuid_unparse_upper(uuid, uuid_str);
1817
19-
// return printf("%s\n", uuid_str);
2018
return uuid_str;
2119
}
2220
*/

0 commit comments

Comments
 (0)