Changeset 259
- Timestamp:
- May 29, 2006, 7:50:17 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.common
r243 r259 78 78 endef 79 79 80 define INSTALL_MAN_RULE 81 @echo "Install $<" 82 @$(MKDIR) $(PREFIX)/man/man1 83 @$(CP) $< $(PREFIX)/man/man1/ 84 endef 85 80 86 RM = rm -Rf 81 87 CP = cp -f -
trunk/cli/Makefile
r243 r259 26 26 $(DEP_RULE) 27 27 28 install: transmissioncli 28 install: install-bin install-man 29 30 install-bin: transmissioncli 29 31 $(INSTALL_BIN_RULE) 30 32 33 install-man: transmissioncli.1 34 $(INSTALL_MAN_RULE) 35 31 36 -include .depend -
trunk/gtk/ipc.c
r249 r259 294 294 /* write the bencoded data length into the first 8 bytes of the buffer */ 295 295 stupid = buf[8]; 296 snprintf(buf, 9, "%08X", used - 8);296 snprintf(buf, 9, "%08X", (unsigned int)used - 8); 297 297 buf[8] = stupid; 298 298
Note: See TracChangeset
for help on using the changeset viewer.