Changeset 777 for soft/giet_vm/applications/rosenfeld/src/ecc_common.c
- Timestamp:
- Feb 4, 2016, 6:25:22 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/rosenfeld/src/ecc_common.c
r772 r777 5 5 #include <stdio.h> 6 6 #include <stdlib.h> 7 #include <string.h> 7 8 #include <math.h> 8 9 … … 310 311 char complete_filename[64]; 311 312 312 s printf(complete_filename, "%s.dot", filename);313 snprintf(complete_filename, 64, "%s.dot", filename); 313 314 314 315 fd = open(complete_filename, O_CREAT | O_TRUNC); … … 330 331 char complete_filename[64]; 331 332 332 s printf(complete_filename, "%s.dot", filename);333 snprintf(complete_filename, 64, "%s.dot", filename); 333 334 334 335 … … 351 352 char complete_filename[64]; 352 353 353 s printf(complete_filename, "%s.dot", filename);354 snprintf(complete_filename, 64, "%s.dot", filename); 354 355 355 356 … … 403 404 char complete_filename[64]; 404 405 405 s printf(complete_filename, "%s.dot", filename);406 snprintf(complete_filename, 64, "%s.dot", filename); 406 407 407 408
Note: See TracChangeset
for help on using the changeset viewer.